C语言-统计输出的文字有多少个单词

浏览:
字体:
发布时间:2013-12-11 11:03:05
来源:
题目:    统计输出的文字有多少个单词输入要求:hello human ni hao输出要求:There are 4 words in the line
// 指针,可能会有点繁琐#include int main(){	char a[999];	char * e;	int count = 0;	gets(a);	e = a;	while(*e != '/0')	{		if( *e == ' ' || *e == '/t')		{			e++;			continue;		}		if( (*e >= 'a' && *e <= 'z') || (*e >= 'A' && *e <= 'Z') )		{			count++;			while(*e != '/0')			{				if( (*e >= 'a' && *e <= 'z') || (*e >= 'A' && *e <= 'Z') )					e++;				if( *e == ' ' || *e == '/t')					break;			}		}	}	printf("您输入的有 %d 个单词/n", count);	return 0;}


>更多相关文章
24小时热门资讯
24小时回复排行
资讯 | QQ | 安全 | 编程 | 数据库 | 系统 | 网络 | 考试 | 站长 | 关于东联 | 安全雇佣 | 搞笑视频大全 | 微信学院 | 视频课程 |
关于我们 | 联系我们 | 广告服务 | 免责申明 | 作品发布 | 网站地图 | 官方微博 | 技术培训
Copyright © 2007 - 2024 Vm888.Com. All Rights Reserved
粤公网安备 44060402001498号 粤ICP备19097316号 请遵循相关法律法规
');})();