📄 13-2.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 + -