#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <string.h> int main() { char userInto[10] = ""; int count = 1; while (count <= 3) { printf("请输入密码:>"); scanf("%s", userInto); if (strcmp(userInto, "CLang") == 0) { printf("登录成功\n"); } else { printf("密码错误\n"); } count++; } if (count == 3) { printf("失败次数过多,即将施行冻结账户...\n"); } return 0; }
[C语言教学传送门]
[C语言教学] 如何实现<猜数字>程序的基本框架
[C语言小程序传送门]
[C语言小程序] - 二分法查找的实现