/* 题目描述: 编一个程序,读入用户输入的,以“.”结尾的一行文字,统计一共有多少个单词,并分别输出每个单词含有多少个字符。 (凡是以一个或多个空格隔开的部分就为一个单词) 输入: 输入包括1行字符串,以“.”结束,字符串中包含多个单词,单词之间以一个或多个空格隔开。 输出: 可能有多组测试数据,对于每组数据, 输出字符串中每个单词包含的字母的个数。 样例输入: hello how are you. 样例输出: 5 3 3 3 */ # include <stdio.h> # include <string.h> int main(void) { int i,j,k = 0,n,len,count,a[20]; char s[100]; scanf("%d", &n); for(i = 0; i < n; i++) { getchar(); //吸收回车符。 if(n <= 0) break; gets(s); len = strlen(s); for(j = 0,count = 0; j < len; j++) { if((s[j] != ' ') && (s[j] != '.')) { count++; continue; } a[k] = count; k++; if(s[j] == '.') break; count = 0; } for(i = 0; i < k; i++) { if(a[i] != 0) printf("%d ", a[i]); } printf("\n"); } return 0; }
时间: 2024-12-30 00:09:55