C语言题:输入一行字符,分别统计出其中的英文字母、空格、数字和其它字符。

 我来答
meiany
2008-04-16
知道答主
回答量:12
采纳率:0%
帮助的人:0
展开全部
#include<stdio.h>
#include<conio.h>
main()
{
int zimu=0,dight=0,space=0,other=0,i=0;
char c;
printf("Input string:");
while((c=getchar())!='\n') yj
{
if('A'<=c&&c<='Z'||'a'<=c&&c<='z')
++zimu;
else if ((c<='9')&&(c>='0'))
++dight;
else if (c==' ')
++space;
else
++other;
}
printf("zimu:%d\ndight:%d\nspace:%d\nother:%d\n",zimu,dight,space,other);
getch();
}

我用的软件是devcpp-4.9.9.2
还有一种是

#include<stdio.h>
#include<conio.h>
main()
{
int zimu=0,dight=0,space=0,other=0,i=0;
char *p,s[1000];
printf("Input string:");
while((s[i]=getchar())!='\n') i++;
p=&s[0];/*p=s;*/
while(*p!='\n')
{
if('A'<=*p&&*p<='Z'||'a'<=*p&&*p<='z')
++zimu;
else if ((*p<='9')&&(*p>='0'))
++dight;
else if (*p==' ')
++space;
else
++other;
p++;
}
printf("zimu:%d\ndight:%d\nspace:%d\nother:%d\n",zimu,dight,space,other);
getch();
}

参考资料: 谭浩强<<C语言程序设计教程>>

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式