Problem F: 统计出其中英文字母、数字、空格和其他字符的个数

Problem F: 统计出其中英文字母、数字、空格和其他字符的个数

Time Limit: 1 Sec  Memory Limit: 128 MB

 

Description

输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数。

Input

一行字符

Output

统计值

Sample Input

aklsjflj123 sadf918u324 asdf91u32oasdf/.';123

Sample Output

23 16 2 4

HINT

参考答案:

#include
int main()
{
	int str=0,nu=0,space=0,ot=0;
	char ch;
	while((scanf("%c",&ch))!=EOF)
	{
		if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z'))
		{
			str++;
		}
		else if(ch>='0'&&ch<='9')
			{
			   nu++;  
			}
		else if(ch==' ')
			{
			    space++;
			}
		else
			ot++;
	}
	printf("%d %d %d %d",str,nu,space,ot-1);
	return 0;
}

编程软件及学习视频下载:点击打开链接

 

你可能感兴趣的:(c语言基础)