#include <stdio.h>
int main(){
char c; // 用于接收输入的字符
int letter=0,space=0,digit=0,other=0; // 分别用于统计字母、空格、数字和其他字符的数量
printf("请输入一行字符:\n"); // 提示用户输入一行字符
while((c=getchar())!='\n'){ // 循环,直到输入字符为换行符
if(c>='a'&&c<='z'||c>='A'&&c<='Z') // 判断字符是否为字母
letter++;
else if(c>='0'&&c<='9') // 判断字符是否为数字
digit++;
else if(c==' ') // 判断字符是否为空格
space++;
else // 其他所有情况
other++;
}
// 打印统计结果
printf("字母数:%d\n空格数:%d\n数字数:%d\n其他字符数:%d\n",letter,space,digit,other);
return 0;
}