比赛 |
20160707 |
评测结果 |
AAAAAAAAAA |
题目名称 |
单词缩写 |
最终得分 |
100 |
用户昵称 |
WHZ0325 |
运行时间 |
0.004 s |
代码语言 |
C++ |
内存使用 |
0.32 MiB |
提交时间 |
2016-07-07 16:02:33 |
显示代码纯文本
#include <fstream>
#include <string>
#include <sstream>
#include <cctype>
using namespace std;
ifstream fin("abbreviation.in");
ofstream fout("abbreviation.out");
int t;
string s;
stringstream ss;
string word;
int main() {
fin>>t;
getline(fin,s);
while(t>0) {
getline(fin,s);
stringstream ss(s);
while(ss>>word) {
for(int i=0;i<word.length();i++) {
word[i]=tolower(word[i]);
}
if(word.length()>=3&&word!="and"&&word!="for"&&word!="the") {
fout<<char(toupper(word[0]));
}
}
fout<<endl;
t--;
}
fin.close();
fout.close();
return 0;
}