比赛 |
20160707 |
评测结果 |
EEEEEEEEEE |
题目名称 |
单词缩写 |
最终得分 |
0 |
用户昵称 |
Extreme°/极致 ° |
运行时间 |
0.812 s |
代码语言 |
C++ |
内存使用 |
0.28 MiB |
提交时间 |
2016-07-07 14:48:26 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<string>
using namespace std;
string a[150];
char ch(char x)
{
if(x>='a'&&x<='z')
x=x+('A'-'a');
return x;
}
int main()
{
freopen("abbreviation.in","r",stdin);
freopen("abbreviation.out","w",stdout);
int t;
scanf("%d",&t);
int i;
char c;
for(i=1;i<=t;i++)
{
int j=1;
cin>>a[1];
c=getchar();
if(a[1]!="and"&&a[1]!="for"&&a[1]!="the"&&a[1].size()>=3)
cout<<ch(a[1][0]);
while(1)
{
j++;
cin>>a[j];
c=getchar();
if(a[j]!="and"&&a[j]!="for"&&a[j]!="the"&&a[j].size()>=3)
cout<<ch(a[j][0]);
if(c=='\n')
break;
}
cout<<endl;
}
return 0;
}