PAT 乙级 1081 检查密码 (15分) C语言 测试点2

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;
}


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值