2019/1/22统计英文字母、空格、数字和其他字符的个数
输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。
#include<stdio.h>
int main()
{
char c;
int l=0,s=0,d=0,o=0;
while((c=getchar())!='\n')
{
if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))
l++;
else if(c==' ')
s++;
else if(c>='0'&&c<='9')
d++;
else
o++;
}
printf("%d %d %d %d",l,s,d,o);
return 0;
}