解题思路:
题目很简单 按照要求来就行
参考代码:
#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 人评分
IP判断 (C语言描述,蓝桥杯)浏览:1118 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:866 |
生日日数 (C语言代码)浏览:1574 |
盐水的故事 (C语言代码)浏览:1601 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:852 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:489 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:2206 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:827 |
C二级辅导-分段函数 (C语言代码)浏览:790 |
1250题解浏览:603 |