题目链接
一些话
流程
用string来读入字符,免去%c的特殊处理
用string储存codeforces,遍历其元素与读入的字符比较
套路
条件与钞票(打表枚举)_栞那Kanna的博客-CSDN博客类似,都是给出若干常量,用其对输入的量进行处理
处理方法是用string或char数组直接储存题目给的量,然后循环枚举其中的元素
ac代码
#include <iostream> using namespace std; int main(){ int n; cin >> n; string s; bool flag; string ss= "codeforces"; for(int i = 0;i < n;i++){ cin >> s; flag = false; for(int j = 0;j < 10;j++) if(s[0] == ss[j]) flag = true;//cout << s[0] << s[j] << endl;} if(flag) cout << "Yes" << endl; else cout << "No" << endl; } return 0; }