#include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char *passwd = "123456";//初始密码 char input[10]; int i; for (i = 0; i < 3; i++) { printf("请输入密码:\n"); scanf("%s", &input); if (strcmp(passwd, input) == 0)//比较字符 { break; } else { printf("输入有误\n"); } } if (3 == i) { printf("账户已锁定\n"); exit(0);//退出函数 } else { printf("登陆成功/n"); } system("pause"); return 0; }
时间: 2024-11-05 19:42:15