码迷,mamicode.com
首页 > 其他好文 > 详细

计算形参s所指字符串中包含的单词个数,作为函数值返回

时间:2019-07-28 19:53:35      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:lag   std   amp   oid   NPU   class   flag   put   main   

#include<stdio.h>
#include<string.h>
int fun(char *s)
{
	int count=0;
	int flag=0;     //声明标志
	while(*s!=‘\0‘)
	{
		if(*s!=‘ ‘ && flag==0)
		{
			count++;
			flag=1;
		}
		if(*s==‘ ‘)   //当字符串出现空格,将flag置0,则可进入第一个if语句,单词个数加1
			flag=0;
		s++;
	}
	return count;
}
void main()
{
	char s[81];
	printf("Please input a string:");
	gets(s);
	printf("The string have %d word\n",fun(s));
}

  

计算形参s所指字符串中包含的单词个数,作为函数值返回

标签:lag   std   amp   oid   NPU   class   flag   put   main   

原文地址:https://www.cnblogs.com/-slz-2/p/11260292.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!