C语言程序设计教程(中国铁道出版社)习题4第7题:
输入一行字符,统计其中单词的个数(单词之间可能有多个空格)。
#include<stdio.h>
int main()
{
int count=0,word=0;
printf怎么读英语 char ch;
printf("输入一行字符:");
while((ch=getchar())!='\n')
if(ch==' ')
word=0;
else if(word==0)
{
word=1;
count++;
}
printf("总共有%d个单词\n",count);
return 0;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论