#include <stdio.h>
//输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数
int main() {
char c;
int letters=0; //用于记录英文字母个数
int space=0; //用于记录空格个数
int digit=0; //用于记录数字个数
int other=0; //用于记录其他字符个数
printf("请输入一行字符:\n");
while((c=getchar())!='\n') //循环条件是c不等于换行(即结束符)
{
if(c>='a'&&c<='z'||c>='A'&&c<='Z')
{
letters++;
}
else if(c==' ')
{
space++;
}
else if(c>='0'&&c<='9')
{
digit++;
}
else
{
other++;
}
}
printf("字母数为:%d\n空格数为%d\n数字个数为%d\n其他个数为%d\n",letters,space,digit,other);
return 0;
}