输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数。
一行字符
统计值
aklsjflj123 sadf918u324 asdf91u32oasdf/.';123
23 16 2 4
#include
int main()
{
int letter=0,number=0,blank=0,others=0;
char c;
printf("Input your string:");
while((c=getchar())!='\n')
{
if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))
{
letter++;
}
else if(c>='0'&&c<='9')
{
number++;
}
else if(c==' ')
{
blank++;
}
else {
others++;
}
}
printf("字母为:%d\n数字:%d\n空格为:%d\n其它字符为:%d\n",letter,number,blank,others);
return 0;
}