输入英文句子统计单词个数c语言
输入一个英文句子,单词间用空格隔开。统计单词个数。在devcpp软件下用.c格式运行。并注明原理。谢谢...
输入一个英文句子,单词间用空格隔开。统计单词个数。在dev cpp软件下用.c格式运行。并注明原理。谢谢
展开
4个回答
展开全部
#include <stdio.h>
int main()
{
int i=0,words=0;
char str[256]={0};
gets(str);
while (str[i]) //循环遍历句子字符串
{
if(str[i]==' ' || str[i]=='.' || str[i]==',' || str[i]=='!')
{ //当遇见空格 逗号 句号 感叹号 就计做一个单词
words++;
}
i++;
}
printf("Have [%d] words\n",words);
}
You are a student,she is a girl.
Have [8] words
Press any key to continue
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include "stdio.h"
main()
{
char *s;
int cnt = 0;
printf("please enter the sentence\n");
gets(s);
while(*s)
{
if(*s==' ') cnt++;
s++;
}
printf("the sectence have %d word\n",cnt+1);
}
main()
{
char *s;
int cnt = 0;
printf("please enter the sentence\n");
gets(s);
while(*s)
{
if(*s==' ') cnt++;
s++;
}
printf("the sectence have %d word\n",cnt+1);
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
统计空格的个数再加1应该就是单词个数!
追问
我也知道是统计空格个数。。。可是怎么统计阿?是什么程序?
追答
我只会vc的!行不行!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询