统计单词数

Posted p201821430005

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计单词数相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
int main(){
 int word,num=0;
 char ch;
 printf("input your text: ");
    while((ch=getchar())!=‘ ‘)
        if(ch==‘ ‘)
            word=0;
        else if(word==0){
         word=1;
         num++;
  }
    printf("there are %d words all together ",num);
    return 0;
}

以上是关于统计单词数的主要内容,如果未能解决你的问题,请参考以下文章

统计单词数

JSK-27321 统计单词数字符串

2011统计单词数

洛谷 P1308 统计单词数字符串+模拟

AC日记——统计单词数 openjudge 1.12 5

杭电2072 统计单词数