求C语言程序设计高手解答考试题~~在线等,急需,谢谢
问题是:写一个主程序,输入任意一串字符(以#结束)分别统计出大写字母,小写字母,以及其他字符的个数,并将结果输出求解答程序源代码:谢谢各位解答了。。。。很急啊!!!!在线...
问题是:写一个主程序,输入任意一串字符(以#结束)分别统计出大写字母,小写字母,以及其他字符的个数,并将结果输出
求 解答 程序源代码: 谢谢各位解答了。。。。 很急啊!!!!在线等!!
求求各位了。。。。明天就要交了!!!! 展开
求 解答 程序源代码: 谢谢各位解答了。。。。 很急啊!!!!在线等!!
求求各位了。。。。明天就要交了!!!! 展开
展开全部
#include <stdio.h>
int main()
{
char ch=NULL;
int big=0,small=0,others=0;
while((ch=getchar())!='#')
{
if(ch>='A'&&ch<='Z') big++;
else if(ch>='a'&&ch<='z') small++;
else if(ch<'0'||ch>'9') others++;
}
printf("bigletter=%d\nsmallletter=%d\nothers=%d\n",big,small,others);
return 0;
}
int main()
{
char ch=NULL;
int big=0,small=0,others=0;
while((ch=getchar())!='#')
{
if(ch>='A'&&ch<='Z') big++;
else if(ch>='a'&&ch<='z') small++;
else if(ch<'0'||ch>'9') others++;
}
printf("bigletter=%d\nsmallletter=%d\nothers=%d\n",big,small,others);
return 0;
}
展开全部
#include<stdio.h>
int main(void)
{
char ch;
int lwr=0, uppr=0,other=0;
scanf("%c",&ch);
while(1)
{
scanf("%c",&ch);
if(ch == '#')break;
if(ch >= 'a' && ch <='z')
lwr++;
else if(ch >= 'A' && ch <='Z')
uppr++;
else
other++;
}
printf("%d%d%d",lwr,uppr,other);
}
int main(void)
{
char ch;
int lwr=0, uppr=0,other=0;
scanf("%c",&ch);
while(1)
{
scanf("%c",&ch);
if(ch == '#')break;
if(ch >= 'a' && ch <='z')
lwr++;
else if(ch >= 'A' && ch <='Z')
uppr++;
else
other++;
}
printf("%d%d%d",lwr,uppr,other);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询