比赛 |
20160707 |
评测结果 |
WWWWWWWWWW |
题目名称 |
单词缩写 |
最终得分 |
0 |
用户昵称 |
Dream |
运行时间 |
0.007 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-07-07 15:06:21 |
显示代码纯文本
#include <cstdio>
#include <iostream>
#include <string>
using namespace std;
int n;
string s;
void Read(){
freopen("abbreviation.in","r",stdin);
freopen("abbreviation.out","w",stdout);
}
void work(string &str){//a-A=32
int i,j,k,blank=0;
string tmp;
for(i=0;i<str.size();i++){//conut the number of blank
//the num of words is blank+1
if(str[i]==' ') blank++;
}
int cnt_words=blank+1;
int cnt=0;
for(i=1;i<=cnt_words;i++){
tmp.clear();
for(;;cnt++){
if(str[cnt]==' '||cnt==str.size()) {cnt++;break;}
tmp.push_back(str[cnt]);
}
for(int l=0;l<tmp.size();l++) if(tmp[l]<='z'&&tmp[l]>='a') tmp[l]-=32;
if(tmp.size()<3||tmp=="FOR"||tmp=="AND"||tmp=="THE") continue;
else {
printf("%c",tmp[0]);
}
}
printf("\n");
}
void Init(){
ios::sync_with_stdio(false);
scanf("%d",&n);
for(int i=1;i<=n;i++){
getline(cin,s);
work(s);
}
}
int main(){
//cout<<'a'-'A';
Read();
Init();
return 0;
}