⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 13-2.c

📁 本书是单片机系列教材
💻 C
字号:
/*13-2.c*/
#include<stdio.h>
#include<stdio.h>
main()
{
char *password="tcass";/* 密码 */
char *p;
int time=0;
do
{
   printf("Enter password:");
  gets(p);
  if(strcmp(p,password)==0)
	{ printf("OK!welcome\n");
	exit(0);
	}
else
  time++;
printf("\n");
}while(time<3);
if(time==3)
printf("You are irregal user\n");
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -