记录编号 |
278252 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[暑假培训2012] 单词缩写 |
最终得分 |
100 |
用户昵称 |
Kulliu |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2016-07-07 16:43:40 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include <fstream>
#include <string>
#include <cstring>
#include <sstream>
#include <ctype.h>
using namespace std;
ifstream fin("abbreviation.in");
ofstream fout("abbreviation.out");
int main()
{
int n;
char ch;
string str,s,ans;
stringstream st;
fin>>n;
for(int i=1;i<=n+1;i++)
{
getline(fin,str);
st.clear();
st.str(str);
while(st>>s)
{
int x=s.length();
for(int j=0;j<=x-1;j++)
{
if(s[j]>='A'&&s[j]<='Z')
s[j]+='a'-'A';
}
if (x<=2||s=="and"||s=="for"||s=="the")
continue;
s[0]=toupper(s[0]);
fout<<s[0];
}
if(i!=1)
fout<<endl;
}
fin.close();
fout.close();
return 0;
}