ZZULIOJ 1133: 单词个数统计

题目描述

从键盘输入一行字符,长度小于1000。统计其中单词的个数,各单词以空格分隔,且空格数可以是多个。

输入

输入只有一行句子。仅有空格和英文字母构成
 

输出

单词的个数
 

样例输入 Copy
stable marriage  problem Consists     of Matching members 
样例输出 Copy
7

#include
#include
int main(void)
{
	int i,len,count;
	char str[1000];
	gets(str);
	count=0;
	for(i=0;str[i]!='\0';i++)
	{
		if(str[i]!=' '&&str[i+1]==' ')
		count++;
	}
	len=strlen(str);//
	if(str[len-1]!=' ')
	count++;
	printf("%d\n",count);
	return 0;
}

 

你可能感兴趣的:(c++,开发语言)