c语言编写一个程序,在一维数组里输入一句英文,统计该句子里出现的单词个数?

 我来答
shenyh7474
推荐于2019-10-13 · TA获得超过143个赞
知道答主
回答量:134
采纳率:100%
帮助的人:137万
展开全部
#include <stdio.h>
main()
{
char string[81];
int i, num=0,word=0;
char c;
gets(string);
for(i=0;(c=string[i])!='\0';i++) //确定没有到结束符
{
if(c==' ') //当c获得的字符为空格的时候,单引号内为空格
word=0;
else if(word==0)
{
word=1;
num++;
}
}
printf("there are %d words in the line.\n",num);
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式