记录编号 |
64986 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[暑假培训2012] 单词缩写 |
最终得分 |
100 |
用户昵称 |
超级傲娇的AC酱 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2013-07-25 11:46:03 |
内存使用 |
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,old;
getline(fin,old);
for (int i=0;i<n;i++)
{
getline(fin,old);
istringstream strin(old.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]); }