统计单词数
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;
}
以上是关于统计单词数的主要内容,如果未能解决你的问题,请参考以下文章