输入一行字符,以回车键结束输入 分别统计其中出现的大写英文字母 小写英文字母 数字字符 空格和其他字符

2024-11-28 03:46:58
推荐回答(2个)
回答1:

#include 
int main()
{
  int letter=0,space=0,digit=0,others=0;
  char c;
  while((c=getchar())!='\n'){
   if(c==' ')
      space++;
   else if(c>='1'&&c<='9')
       digit++;
   else if((c>='a'&&c<='z')||c>='A'&&c<='Z')
       letter++;
   else others++;
  }
  printf("The number of letters is:%d\n",letter);
  printf("The number of spaces is:%d\n",space);
  printf("The number of digits is:%d\n",digit);
  printf("The number of other words is:%d\n",others);
return 0;
}

回答2:

#include
int main()
{
int letter=0,space=0,digit=0,others=0;
char c;
while((c=getchar())!='\n'){
if(c==' ')
space++;
else if(c>='1'&&c<='9')
digit++;
else if((c>='a'&&c<='z')||c>='A'&&c<='Z')
letter++;
else others++;
}
printf("The number of letters is:%d\n",letter);
printf("The number of spaces is:%d\n",space);
printf("The number of digits is:%d\n",digit);
printf("The number of other words is:%d\n",others);
return 0;
}