比赛 20150711暑期B班 评测结果 AWWWWWWWWW
题目名称 单词缩写 最终得分 10
用户昵称 Arrow 运行时间 0.008 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2015-07-11 11:17:53
显示代码纯文本
#include<fstream>
#include<string>
using namespace std;
int main()
{
	ifstream fin("abbreviation.in");
	ofstream fout("abbreviation.out");
	int n,l;
	string st;
	fin>>n;
	for(int i=0;i<n;i++){
		while(fin.peek()!=-1){
			fin>>st;
			l=st.length();
			for(int j=0;j<l;j++){
				if(st[j]>='a'&&st[j]<='z')
					st[j]-=32;}
			if(l>=3&&st!="FOR"&&st!="AND"&&st!="THE"){
				fout<<st[0];}
		if(fin.peek()==10) fout<<endl;}
	}
	fin.close();
	fout.close();
	return 0;
}