记录编号 |
549859 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[暑假培训2012] 单词缩写 |
最终得分 |
100 |
用户昵称 |
锝镆氪锂铽 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2020-02-25 16:56:08 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cctype>
using namespace std;
int abb(){
freopen("abbreviation.in","r",stdin);
freopen("abbreviation.out","w",stdout);
int n,hang=0;
string s;
char ch;
scanf("%d",&n);
while(1){
cin>>s;
ch=getchar();
for(int i=0;i<s.length();i++){
s[i]=toupper(s[i]);
}
if(s.length()<3||s=="THE"||s=="AND"||s=="FOR"){
if(ch==' ')
continue;
else{
printf("\n");
hang++;
}
}
else{
printf("%c",s[0]);
if(ch==' '){
continue;
}
else{
printf("\n");
hang++;
}
}
if(hang==n)
break;
}
return 0;
}
int lol=abb();
int main(void){;}