解题思路:
注意事项:比较简单,没什么好主意的
参考代码:#include<stdio.h>
#include<string.h>
#include <ctype.h>
#include<math.h>
int main()
{
int n,i;
char str[100];
scanf("%d",&n);
while(n!=0)
{
int a=0,b=0,c=0,d=0;
scanf("%s",&str);
for(i=0;i<strlen(str);i++)//循环判断每一位
{
if('a'<=str[i]&&str[i]<='z')
a++;
if('A'<=str[i]&&str[i]<='Z')
b++;
if('0'<=str[i]&&str[i]<='9')
c++;
if(str[i]=='~'||str[i]=='!'||str[i]=='@'||str[i]=='#'||str[i]=='$'||str[i]=='%'||str[i]=='^')
d++;
}
if(strlen(str)>=8&&strlen(str)<=16&&(a*b*c!=0||a*b*d!=0||b*c*d!=0||a*c*d!=0))//判断题意条件
printf("YES\n");
else
printf("NO\n");
n--;
}
return 0;
}
0.0分
0 人评分
C二级辅导-同因查找 (C语言代码)浏览:590 |
逆反的01串 (C++代码)(依旧推荐switch)浏览:1003 |
C二级辅导-计负均正 (C语言代码)浏览:643 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:641 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:668 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:651 |
数组输出 (C语言代码)浏览:811 |
大小写转换 (C语言代码)浏览:904 |
WU-字符串比较 (C++代码)浏览:824 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:512 |