...分别统计出大写字母,小写字母,以及其他字符的个数,并将结果输出...
发布网友
发布时间:2024-10-18 22:34
我来回答
共1个回答
热心网友
时间:2024-11-17 18:59
#include "stdio.h"
void main()
{
char str;
int up=0,low=0,other=0;
printf("please input the string\n");
do{
scanf("%c",&str);
if(str >='a' && str<='z')
low++;
else if(str>='A' && str<='Z')
up++;
else
other++;
}
while(str!='#');
--other;//uncount the char '#'
printf("the count of Capital is %d\n",up);
printf("the count of lowercase is %d\n",low);
printf("the count of other letter is %d\n",other);
}
这些都是很简单的,要自己努力。。你自己把这个东西改成函数吧。