记录编号 40633 评测结果 AAAAAAAAAA
题目名称 [暑假培训2012] 单词缩写 最终得分 100
用户昵称 Gravatarcstdio 是否通过 通过
代码语言 C++ 运行时间 0.004 s
提交时间 2012-07-18 15:09:15 内存使用 0.29 MiB
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <cctype>
#include <algorithm>
using namespace std;
const int S = 200;
int n, j, k, l, r;
char s[S], u[S], t[S];
int main() {
    freopen("abbreviation.in", "r", stdin);
    freopen("abbreviation.out", "w", stdout);
    scanf("%d\n", &n);
    for(int i=0; i<n; i++) {
        memset(t, 0, sizeof(t));
        memset(s, 0, sizeof(s));
        memset(u, 0, sizeof(u));
        fgets(s, S, stdin);
        l = strlen(s);
        for(int v=0; v<l; v++) s[v] = tolower(s[v]);
        s[l] = ' ';
        r = j = 0;
        while(sscanf(s+j, "%s ", u) == 1) {
            k = strlen(u);
            if((k > 3) || (k == 3 && strcmp(u, "and") &&
                        strcmp(u, "for") && strcmp(u, "the")))
                    t[r++] = toupper(u[0]);
            j += k+1;
        }
        printf("%s\n", t);
    }
    return 0;
}