1076 习题5-4 字符统计

题目描述

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

输入

一行字符,可以包含字母、数字、空格、标点等符号

输出

分行输出大小写英文字母、空格、数字和其他字符的个数。

如:

characters=字母个数

spaces=空格个数

numbers=数字个数

others=其他字符个数

样例输入

My input123 @%chars.

样例输出

characters=12
spaces=2
numbers=3
others=3


#include  
int main()
{
   char c;
   int characters=0,spaces=0,numbers=0,others=0;
   while((c=getchar())!='\n')
   {
   	if(c>='a'&&c<='z'||c>='A'&&c<='Z') characters++;
   	else if(c==' ') spaces++;
   	else if(c>='0'&&c<='9') numbers++;
   	else others++;
   }
   printf("characters=%d\n",characters);
   printf("spaces=%d\n",spaces);
   printf("numbers=%d\n",numbers);
   printf("others=%d\n",others);
   return 0;
}



你可能感兴趣的:(XYNUOJ(C))