C语言实验——单词统计 (sdut oj)

来源:互联网 发布:淘宝网拍下商品的步骤 编辑:程序博客网 时间:2024/05/29 12:30


C语言实验——单词统计

Time Limit: 1000MS Memory Limit: 65536KB



Problem Description

从键盘输入一行字符(长度小于100),统计其中单词的个数,各单词以空格分隔,且空格数可以是多个。


Input

输入只有一行句子。仅有空格和英文字母构成。


Output

单词的个数。


Example Input

stable marriage  problem Consists     of Matching members


Example Output

7


Hint

 

Author








参考代码


#include<stdio.h>#include<string.h>int main(){    char s[101];    int i,num = 0,word = 0;    gets(s);    int n = strlen(s);    for(i = 0; i < n; i++)    {        if(s[i] == ' ')        {            word = 0;        }        else if(word == 0)        {            word = 1;            num++;        }    }    printf("%d",num);    return 0;}


0 0
原创粉丝点击