strtok

词组缩写

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3708    Accepted Submission(s): 1202


Problem Description
定义:一个词组中每个单词的首字母的大写组合称为该词组的缩写。
比如,C语言里常用的EOF就是end of file的缩写。
 

Input
输入的第一行是一个整数T,表示一共有T组测试数据;
接下来有T行,每组测试数据占一行,每行有一个词组,每个词组由一个或多个单词组成;每组的单词个数不超过10个,每个单词有一个或多个大写或小写字母组成;
单词长度不超过10,由一个或多个空格分隔这些单词。
 

Output
请为每组测试数据输出规定的缩写,每组输出占一行。
 

Sample Input
1 end of file
 

Sample Output
EOF
 
 1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4
5 char str[1000];
6
7
8 void solve( )
9 {
10 int i, j, len;
11 char *p;
12 p = strtok(str," ");
13 while( p )
14 {
15 if ( *p >= 97)
16 printf("%c", *p - 32);
17 else
18 printf("%c", *p);
19 p = strtok(NULL," ");
20 }
21 puts("");
22 }
23
24 int main( )
25 {
26 int T;
27 //printf("%c %d %c %d\n", 'a', 'a', 'z', 'z');
28 scanf("%d", &T);
29 getchar();
30 while(T--) {
31 gets(str);
32 solve( );
33 }
34 return 0;
35 }

  

posted on 2011-08-29 23:33  more think, more gains  阅读(464)  评论(0编辑  收藏  举报

导航