比赛 |
20150711暑期B班 |
评测结果 |
AAWWWWWWWW |
题目名称 |
单词缩写 |
最终得分 |
20 |
用户昵称 |
Athena |
运行时间 |
0.012 s |
代码语言 |
C++ |
内存使用 |
0.41 MiB |
提交时间 |
2015-07-11 11:23:16 |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
char a[100000]={0};
int main(void)
{
int t,i,cou=0,j;
string s;
freopen("abbreviation.in","r",stdin);
freopen("abbreviation.out","w",stdout);
cin>>t;
for(i=0; i<t; i++)
{
cou=0;
while(1)
{
cin>>s;
if(s.length() >2 && s!="for" && s!= "and" &&s!= "the"&& s!="THE" && s!="For" && s!="And"&& s!="The")
{
a[cou]=s[0];
cou++;
}
if(cin.peek()== '\n' || cin.peek() == '\r'||cin.peek()==-1)
break;
}
for(j=0; j<cou; j++)
{
printf("%c",toupper(a[j]));
}
cout<<endl;
}
return 0;
}