//用最笨的方法,把5种情况都列出来,比较好理解 #include <iostream> #include <cstdlib> #include <cmath> #include <deque> #include <algorithm> #include <numeric> #include <iterator> #include <sstream> #include <iomanip> #include <vector> #include <string> using namespace std; int f1(string str) { int i; for(i=0;i<str.size();i++) { if(str[i]>='0'&&str[i]<='9') { break; } } if(i!=str.size()) { return 1; } else { return 0; } } int f2(string str) { int i; for(i=0;i<str.size();i++) { if(str[i]>='a'&&str[i]<='z') { break; } } if(i!=str.size()) { return 1; } else { return 0; } } int f3(string str) { int i; for(i=0;i<str.size();i++) { if(str[i]>='A'&&str[i]<='Z') { break; } } if(i!=str.size()) { return 1; } else { return 0; } } int f4(string str) { int i; for(i=0;i<str.size();i++) { if(str[i]=='~'||str[i]=='!'||str[i]=='@'||str[i]=='#'||str[i]=='$'||str[i]=='%'||str[i]=='^') { break; } } if(i!=str.size()) { return 1; } else { return 0; } } int main() { int n; deque<string> q; string str[100001]; cin>>n; for(int i=0;i<n;i++) { cin>>str[i]; } for(int i=0;i<n;i++) { if(f1(str[i])==0&&f2(str[i])==1&&f3(str[i])==1&&f4(str[i])==1) { q.push_back("YES"); } else if(f1(str[i])==1&&f2(str[i])==0&&f3(str[i])==1&&f4(str[i])==1) { q.push_back("YES"); } else if(f1(str[i])==1&&f2(str[i])==1&&f3(str[i])==0&&f4(str[i])==1) { q.push_back("YES"); } else if(f1(str[i])==1&&f2(str[i])==1&&f3(str[i])==1&&f4(str[i])==0) { q.push_back("YES"); } else if(f1(str[i])==1&&f2(str[i])==1&&f3(str[i])==1&&f4(str[i])==1) { q.push_back("YES"); } else { q.push_back("NO"); } } copy(q.begin(),q.end(),ostream_iterator<string>(cout,"\n")); return 0; }
解题思路:
注意事项:
参考代码:
0.0分
0 人评分
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:760 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:593 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:769 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:943 |
简单的a+b (C语言代码)浏览:1024 |
计算质因子 (C语言代码)浏览:778 |
矩阵转置 (C语言代码)浏览:855 |
C语言程序设计教程(第三版)课后习题9.2 (C语言代码)浏览:646 |
幸运数 (C++代码)浏览:2982 |
拆分位数 (C语言代码)浏览:464 |