PAT 乙级 1081 检查密码 (15分) C语言
原题链接
思路:
主要要考虑 测试点2 密码中空格的输入,由于scanf()函数以空格、回车、Tab键作为输入字符串的分隔符和结束符,所以在一个字符串中有空格时不能用scanf(),要用gets()读入整行。
在scanf(“%d",&n);后要紧跟一个getchar()用来接收n之后的换行符,否则换行符会被读进gets(),进行第一次循环。
我的代码:
#include<stdio.h>
#include<string.h>
int main()
{
int n;
scanf("%d", &n);
getchar();
for (int i = 0; i < n; i++) {
char str[85];
int feifa = 0, shuzi = 0, zimu = 0;
gets(str);
if (strlen(str) < 6)printf("Your password is tai duan le.\n");
else {
for (int j = 0; j < strlen(str); j++) {
if ((str[j] >= 'A' && str[j] <= 'Z') || (str[j] >= 'a' && str[j] <= 'z'))zimu = 1;
else if (str[j] >= '0' && str[j] <= '9')shuzi = 1;
else if (str[j] != '.')feifa = 1;
}
if (feifa == 1)printf("Your password is tai luan le.\n");
else if (shuzi == 0)printf("Your password needs shu zi.\n");
else if (zimu == 0)printf("Your password needs zi mu.\n");
else printf("Your password is wan mei.\n");
}
}
return 0;
}