比赛 20160707 评测结果 AAAAAAAAAA
题目名称 单词缩写 最终得分 100
用户昵称 Mealy 运行时间 0.007 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-07-07 16:00:11
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cctype>
#include <cstring>
#include <string>
#include <sstream>
using namespace std;
int N;
string opstr,eg,ans;
stringstream stream;
void streamoperation()
{
	stream.clear();
	stream.str(opstr);
}
int main()
{
	int i,j;
	freopen("abbreviation.in","r",stdin);
	freopen("abbreviation.out","w",stdout);
	scanf("%d",&N);
	for(i=1;i<=N+1;i++)
	{
		getline(cin,opstr);
		streamoperation();
		while(stream>>eg)
		{
			int len=eg.length();
			for(j=0;j<=len-1;j++)
			{
				if(eg[j]>='A'&&eg[j]<='Z')
					eg[j]+='a'-'A';
			}
			if (len<=2||eg=="and"||eg=="for"||eg=="the")
				continue;
			eg[0]=toupper(eg[0]);
			printf("%c",eg[0]);
		}
		if(i!=1)
			printf("\n");
	}
	return 0;
}