计算单词个数!

//12-09题目:统计输出的文字有多少个单词
//输入:
// hello  human ni hao  
//输出:
//There are 4 words in the line
//升级版说明:可以排除任意位置的空格!(包括头尾多个空格)
#include <stdio.h>

int main()
{
	char a[100];
	int i,words;
	
start:
	//获取输入
	gets(a);
	//确认输入
	puts(a);
	//复位单词数
	words=0;
	for(i=0;a[i]!='\0';i++)
	{
		if(a[0]!=' ' && i==0) words++;       //计算首空格
		if(a[i]==' ' && a[i+1]==' ')continue;//排除多个空格
		if(a[i]==' ') words++;               //计算单词个数
		if(a[i]==' ' && a[i+1]=='\0')words--;//减去尾空格
	}

	//打印输出
	printf("There are %d words in the line.\n",words);
	goto start;//循环
	
	return 0;	
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值