记录编号 122537 评测结果 AAAAAAAAAA
题目名称 [暑假培训2012] 单词缩写 最终得分 100
用户昵称 GravatarHouJikan 是否通过 通过
代码语言 C++ 运行时间 0.006 s
提交时间 2014-09-23 22:37:03 内存使用 0.31 MiB
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <cstdlib>
#include <map>
#include <string>
#include <set>
#include <list>
#include <iterator>
#include <ctime>
#include <queue>
#include <stack>
#include <vector>
#include <functional>
#include <deque>
#include <sstream>
#define For(i,j,k) for(int i=(j);i<=(k);i++)
using namespace std;
typedef long long LL;
typedef unsigned int Uint;
const int INF=0x7fffffff;
const double eps=1e-6;
using namespace std;
//================struct declaration======================

//================var declaration=-========================
int t;
string rd,x;
stringstream ss;
//================function declaration====================

//================main code===============================
int main()
{
  string ProgrammeName="abbreviation";
  string FloderName="COGS";
  freopen((ProgrammeName+".in").c_str(),"r",stdin);
  freopen((ProgrammeName+".out").c_str(),"w",stdout);
#ifdef DEBUG
  clock_t Start_Time=clock();
   system(("cp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\standard.cpp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\submit.txt").c_str());
#endif
   cin>>t;
   cin.ignore(10,10);
   while (t--)
   {
     getline(cin,rd);
     ss.clear();
     ss.str(rd);
     while (ss>>x)
     {
       int len=x.length();
       For(i,0,len-1)
         if (x[i]>='A'&&x[i]<='Z')
           x[i]+='a'-'A';
       if (len<=2||x=="and"||x=="for"||x=="the")
         continue;
       printf("%c",x[0]+'A'-'a');
     }
     printf("\n");
   }
#ifdef DEBUG
  clock_t End_Time=clock();
  printf("\n\nTime Used :%.6lf Ms\n",double(Start_Time-End_Time)/(-CLOCKS_PER_SEC));
#endif
  return 0;
}
//================function code===========================