解题思路:
题目很简单 按照要求来就行
参考代码:
#include<iostream> #include<cstring> using namespace std; void f(string str) { if(str=="WYS") cout<<"KXZSMR"<<endl; else if(str=="CQ") cout<<"CHAIQIANG"<<endl; else if(str=="LC") cout<<"DRAGONNET"<<endl; else if(str=="SYT"||str=="SSD"||str=="LSS"||str=="LYF") cout<<"STUDYFATHER"<<endl; else cout<<"DENOMINATOR"<<endl; } int main() { //freopen("data.in.txt","r",stdin); int N; cin>>N; string str; while(N--) { cin>>str; f(str); } return 0; }
0.0分
0 人评分
C二级辅导-计负均正 (C语言代码)浏览:477 |
简单的a+b (C语言代码)浏览:385 |
C二级辅导-统计字符 (C语言代码)浏览:427 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:373 |
WU-图形输出 (C++代码)浏览:617 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:987 |
蚂蚁感冒 (C语言代码)浏览:601 |
一元一次方程 (C语言代码)浏览:1838 |
单词个数统计 (C语言代码)浏览:919 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:383 |