1081 检查密码 (15 分) (C语言)

在这里插入图片描述
想法
这道题对我来说没有那样简单,最开始就出现了段错误;
后看了一些大佬的程序,有了一些新的想法;
思路
(1)输入n,每个密码,循环输入,在循环内进行判断;
(2)循环内:如果密码小于六位数,即输出Your password is tai duan le.否则执行下条循环,计数字母、数字、小数点、或其他不合法字
符,在如题判断并输出;
代码

#include<stdio.h>
#include<string.h>
int main()
{
	int n;
	scanf("%d",&n);//输出n
	getchar();
	char a[81];
	
	int len;
	while(n--)
	{	int cha=0,num=0,point=0,other=0;
		gets(a);
		len=strlen(a);
		if(len<6){
		printf("Your password is tai duan le.\n");
		continue;}
			else for(int i=0; i<len; i++)
			{
				if(a[i]>='0' && a[i]<='9')num++;
				else if(a[i]>='a' && a[i]<='z' || a[i]>='A' && a[i]<='Z')cha++;
				else if(a[i]=='.')point++;
				else other++;
			}
		 if(other!=0)printf("Your password is tai luan le.\n");
		 else if(cha!=0 && num==0)printf("Your password needs shu zi.\n");
		 else if(cha==0 && num!=0)printf("Your password needs zi mu.\n");
		 else printf("Your password is wan mei.\n");
	}
	return 0;
}

反思
应该写完程序立马写博客的,现在写总是不能写得特别全面;
写完一个程序,闭着眼睛听首曾轶可的歌,青春真美好呢,hh;

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值