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

统计字符

时间:2015-11-24 06:20:30      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:c语言   字符串   


写一个程序统计输入字符串中:

各个数字、空白字符、以及其他所有字符出现的次数。

#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>//isspace(),isdigit()

int main()
{
	int space = 0;
	int other = 0;
	int arr[10] = { 0 };
	int ch = 0;
	int i = 0;
	
	while ((ch = getchar()) != EOF)
	{
		if (isspace(ch))
		{
			space++;
		}
		else if (isdigit(ch))
		{
			arr[ch - ‘0‘]++;
		}
		else
			other++;
	}
	
	printf("space:%d\n", space);
	printf("other:%d\n", other);
	
	for (i = 0; i < 10; i++)
	{
		printf("%d:%d\n", i, arr[i]);
	}
		system("pause");
	
	return 0;
}


本文出自 “无以伦比的暖阳” 博客,请务必保留此出处http://10797127.blog.51cto.com/10787127/1716186

统计字符

标签:c语言   字符串   

原文地址:http://10797127.blog.51cto.com/10787127/1716186

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