练习3-4 统计字符 (15 分)
本题要求编写程序,输入10个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数。
输入格式:
输入为10个字符。最后一个回车表示输入结束,不算在内。
#include<stdio.h>
int main(void)
{
	int letter, blank, digit, i , other;
	char ch;
	
	letter=blank=digit=other=0;
	for(i=1; i<=10; i++){
		ch=getchar();
		if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z'))
			letter++;
		else if(ch>='0'&&ch<='9')
			digit++;
		else if(ch==' '||ch=='\n')
			blank++;
		else
			other++;
	}
	printf("letter = %d, blank = %d, digit = %d, other = %d\n", letter, blank, digit, other);
	
	return 0;
}










