比赛 20160707 评测结果 WWWWWWWWWW
题目名称 单词缩写 最终得分 0
用户昵称 LGLJ 运行时间 0.010 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-07-07 16:28:14
显示代码纯文本
#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
int main()
{
	freopen ("abbreviation.in","r",stdin);
	freopen ("abbreviation.out","w",stdout);
	int n;
	cin>>n;
	for(int i=0;i<=n;i++)
	{
		while(cin.eof()==false)
		{
			string a;
			cin>>a;
			if(a[0]>='a' && a[0]<='z' && a.length()<=3 || a=="The" || a=="And" || a=="For")
				continue;
			else
			{
				if(a[0]>='A' && a[0]<='Z')
					cout<<a[0];
				else
				{
					char x=a[0]-'a'+'A';
					cout<<x;
				}
			}
		}
		cout<<endl;
	}
	return 0;
}