记录编号 |
278324 |
评测结果 |
WWWWWWWWWW |
题目名称 |
[暑假培训2012] 单词缩写 |
最终得分 |
0 |
用户昵称 |
Ceres |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2016-07-07 17:10:53 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include <fstream>
using namespace std;
ifstream ci("abbreviation.in");
ofstream co("abbreviation.out");
int t;
string st;
int main()
{
ci>>t;getline(ci,st);
for(int i=1;i<=t;i++)
{
getline(ci,st);
int bn=0,s=0;
for(int j=0;j<st.length();j++)
{
if(st[j]==' ')
{
bool k=1;
if(s>=3)
{
if(st[bn]=='a' && st[bn+1]=='n' && st[bn+2]=='d')
k=0;
if(k && (st[bn]=='f' || st[bn]=='F') && st[bn+1]=='o' && st[bn+2]=='r')
k=0;
if(k && (st[bn]=='t' || st[bn]=='T') && st[bn+1]=='h' && st[bn+2]=='e')
k=0;
if(k)
{
if(st[bn]-'a'>=0)
co<<char(st[bn]-'a'+'A');
else
co<<st[bn];
}
}
s=0;
bn=j+1;
}
else
s++;
if(j+1==st.length())
{
if(st[bn]-'a'>=0)
co<<char(st[bn]-'a'+'A');
else
co<<st[bn];
}
}
co<<endl;
}
ci.close();
co.close();
return 0;
}