编写一个程序,从键盘输入一行字符按Enter键结束分别统计并输出出英文字母、空格、数字及其他字符的个数。

输出格式如下:letters=xxspace=xxdigit=xxother=xxxx为个数提示:1.字符输入用getchar()函数,并采用while语句while((... 输出格式如下:letters=xx space=xx digit=xx other=xx xx为个数
提示:1.字符输入用getchar()函数,并采用while语句
while((c=getchar())!='\n') 输入为换行符结束循环。
2.英文字母判断: if(c>='a'&&c<='z'||c>='A'&&c<='Z')
展开
 我来答
a342105264
2009-03-20 · TA获得超过252个赞
知道答主
回答量:71
采纳率:0%
帮助的人:42.4万
展开全部
楼上的数字也要用字符形式哦.
#include<stdio.h>
int main()
{
int letters,space,digit,other;
char c;
letters=0,space=0,digit=0,other=0;
while((c=getchar())!='\n')
{if(c>='a'&&c<='z'||c>='A'&&c<='Z')
letters ++;
else if(c>='0'&&c<='9')
digit++;
else if(c==' ')
space++;
else
other++;}
printf("letters=%d space=%d digit=%d other=%d\n",letters,space,digit,other);
}
_宁静的沉默_
推荐于2017-10-02 · TA获得超过183个赞
知道小有建树答主
回答量:116
采纳率:100%
帮助的人:59.2万
展开全部
#include"stdio.h"
void main()
{int letters,space,digit,other;
letters=space=digit=other=0;
char c;
while((c=getchar())!='\n')
{if(c>='a'&&c<='z'||c>='A'&&c<='Z')
letters ++;
else if(c>=0&&c<=9)
digit++;
else if(c==' ')
space++;
else
other++;}
printf("letters=%d space=%d digit=%d other=%d\n",letters,space,digit,other);
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式