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

输出一串字符串中单词个数

时间:2016-01-07 07:45:36      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>
#include <stdlib.h>

/*
	输入一行字符串(单词和若干空格),
	输出该行单词个数。
*/

int main(){
	char ch, str[100];
	int count = 0;
	gets(str);
	for (int j = 0; str[j] != ‘\0‘;++ j)
		if ((str[j + 1] == ‘\0‘) && (str[j] != ‘ ‘))	//到达末尾且不为空格,单词数+1
				count++;
		else if ((str[j] != ‘ ‘) && (str[j + 1] == ‘ ‘))	//不为空格但下一字符为空格,单词数+1
				count++;
	printf("%d\n", count);
	system("pause");
	return 0;
}

  

输出一串字符串中单词个数

标签:

原文地址:http://www.cnblogs.com/mutaohengheng/p/5108031.html

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