用c语言输入一字符串,分别统计其中的大写字母、小写字母及其它字符的个数

速度 对的话 加分

第1个回答  2010-06-12
#include<stdio.h>
int main()
{
char s[200];
int i,da,xiao,other;
scanf("%s",s);
da=xiao=other=0;
for(i=0;s[i];i++)
{
if(s[i]>='A' && s[i]<='Z') da++;
else if (s[i]>='a' && s[i]<='z') xiao++;
else other++;
}
printf("大写 %d 个\n",da);
printf("小写 %d 个\n",xiao);
printf("其他 %d 个\n",other);
return 0;
}
第2个回答  2021-05-19

C语言字符串的学习,输入指定字符串,并且计算字符串的位数

本回答被网友采纳
相似回答