比赛 20160707 评测结果 AAAAAAAAAA
题目名称 单词缩写 最终得分 100
用户昵称 Arrow 运行时间 0.003 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-07-07 14:41:44
显示代码纯文本
    #include<fstream>
    #include<string>
    using namespace std;
    int main()
    {
    ifstream fin("abbreviation.in");
    ofstream fout("abbreviation.out");
    int n,l;
    string st;
    fin>>n;
    for(int i=0;i<n;i++){
    while(fin.peek()!=-1){
    fin>>st;
    l=st.length();
    for(int j=0;j<l;j++){
    if(st[j]>='a'&&st[j]<='z')
    st[j]-=32;}
    if(l>=3&&st!="FOR"&&st!="AND"&&st!="THE"){
    fout<<st[0];}st.clear();
    if(fin.peek()==10) fout<<endl;}
    }
    fin.close();
    fout.close();
    return 0;
    }