记录编号 169956 评测结果 AAAAAAAAAA
题目名称 [暑假培训2012] 单词缩写 最终得分 100
用户昵称 GravatarArrow 是否通过 通过
代码语言 C++ 运行时间 0.004 s
提交时间 2015-07-11 15:33:18 内存使用 0.31 MiB
显示代码纯文本
#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];}st.clear();
		if(fin.peek()==10) fout<<endl;}
	}
	fin.close();
	fout.close();
	return 0;
}