记录编号 |
278320 |
评测结果 |
WWAWWAWAWW |
题目名称 |
[暑假培训2012] 单词缩写 |
最终得分 |
30 |
用户昵称 |
Ge0Bi1Lao0W |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.029 s |
提交时间 |
2016-07-07 17:08:42 |
内存使用 |
0.28 MiB |
显示代码纯文本
#include<iostream>
#include<istream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<sstream>
#include<string>
using namespace std;
int main()
{
freopen("abbreviation.in","r",stdin);
freopen("abbreviation.out","w",stdout);
int t;
cin>>t;
string str;
for(int i=0;i<t;i++)
{
getline(cin,str);
{
istringstream is(str);
string s;
while(is>>s)
{
for(i=0;i<s.length();i++)
{
if(s[i]>=97&&s[i]<=122)
s[i]=(char)(s[i]-32);
}
if(s!="AND"&&s!="FOR"&&s!="THE"&&s.length()>=3)
cout<<s[0];
}
}
if(i>0)
cout<<endl;
}
return 0;
}