记录编号 |
65830 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[暑假培训2012] 单词缩写 |
最终得分 |
100 |
用户昵称 |
nnzz |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.005 s |
提交时间 |
2013-07-27 12:04:58 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <fstream>
#include <string>
#include <sstream>
#include <stdlib.h>
using namespace std;
ifstream fin("abbreviation.in");
ofstream fou("abbreviation.out");
void btos(string &);
int n;
int main()
{
fin>>n;
string ss,lao; getline(fin,lao);
for (int i=0;i<n;i++){
getline(fin,lao); istringstream strin(lao.c_str());
for (;strin>>ss;){
btos(ss);
if (ss[0]>='A' && ss[0]<='Z')
if (ss.size()>=3 && ss!="FOR" && ss!="THE" && ss!="AND") fou<<ss[0];
}
fou<<endl;
}
return 0;
}
void btos(string &x)
{for (unsigned int i=0;i<x.size();i++)x[i]=toupper(x[i]); }