解题思路:
注意事项:
参考代码:
#include<iostream>
using namespace std;
int main()
{
string str;
int n;
cin>>n;
string s="~!@#$%^";
getchar();
while(n--&&getline(cin,str))
{
int a=0,b=0,c=0,d=0;
if(str.size()<8||str.size()>16)
{
cout<<"NO"<<endl;
}
else
{
for(int i=0;i<str.size();i++)
{
if(str[i]>='A'&&str[i]<='Z')
a=1;
else if(str[i]>='a'&&str[i]<='z')
b=1;
else if(str[i]>='0'&&str[i]<='9')
c=1;
else if(s.find(str[i])!=s.npos)
d=1;
}
if(a+b+c+d<3)
{
cout<<"NO"<<endl;
}
else
{
cout<<"YES"<<endl;
}
}
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:366 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:716 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:468 |
字符逆序 (C语言代码)浏览:645 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:585 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
简单的a+b (C语言代码)浏览:574 |
C二级辅导-温度转换 (C语言代码)浏览:802 |
链表数据求和操作 (C语言代码)浏览:1035 |
简单的a+b (C语言代码)浏览:857 |