天天看点

统计一行文本的单词个数统计一行文本的单词个数

统计一行文本的单词个数

本题目要求编写程序统计一行字符中单词的个数。所谓“单词”是指连续不含空格的字符串,各单词之间用空格分隔,空格数可以是多个。

输入格式:

输入给出一行字符。

输出格式:

在一行中输出单词个数。

输入样例:

输出样例:

代码

#include<stdio.h>
#include<math.h>
int main()
{
    char c;
    int n = 0;
    int pre = 1;
    c = getchar();
    if( c == ' ')
    pre = 1;
    else pre = 0;
    if( !pre )
    n = 1;
    while( (c = getchar()) != '\n'){
        if( pre && c != ' ' ){
            n++;
        }
        if( c == ' ')
        pre = 1;
        else
        pre = 0;
    }
    printf("%d",n);
    system("pause");
    return 0;
}
           
PAT