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

#include<stdio.h>intmain(){intletter=0,space=0,number=0,others=0;charnextchar;printf(... #include <stdio.h>
int main()
{
int letter=0,space=0,number=0,others=0;
char nextchar;
printf("Input your string\n");
for(;nextchar!='\n';)
{
scanf("%c",&nextchar);
if('a'<=nextchar<='z'||'A'<=nextchar<='Z')
letter++;
else if(nextchar==' ')
space++;
else if('0'<=nextchar<='9')
number++;
else
others++;
}
printf("letter=%d,space=%d,number=%d,others=%d\n",letter,space,number,others);
}

哪错啦
展开
 我来答
希伯来爵
2013-01-03 · TA获得超过611个赞
知道答主
回答量:187
采纳率:100%
帮助的人:73万
展开全部
for(i=0;i<50;i++)
{
if(c=='\0')
break;////////////////////////你未必会输满50个字符吧,所以遇到'\0'就要结束循环
if((c>='A'&&c<='Z')||(c>='a'&&c<='z'))
letter++;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2009-12-30
展开全部
void main()
{int i,s=0,b=0,c=0,d=0,e=0;
char a[50];
gets(a);
for(i=0;i<50;i++)
{
if(a[i]>='A'&&a[i]<='Z')s++;
else
if(a[i]>='a'&&a[i]<='z')b++;
else
if(a[i]>=1&&a[i]<=9)c++;
else
if(a[i]=='')d++;
else e++;}
printf("A-Z:%d a-z:%d 1-9:%d space:%d others:%d ",s,b,c,d,e);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
rhdlilj
2014-04-10 · TA获得超过160个赞
知道小有建树答主
回答量:194
采纳率:55%
帮助的人:95.7万
展开全部
 #include <stdio.h>
 int main()
 {
     char s[100], *p;
     int chars = 0, nums = 0, bs = 0, others = 0;
         printf("请输入一个字符串:");
     scanf("%s",s);
     p =s;
     while (*p) {
         if ('a' <= *p && *p <= "z') || ('A' <= *p && *p <= "Z') {
             chars++;
           } 

 
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
翥甾天下
2011-04-18 · TA获得超过177个赞
知道答主
回答量:69
采纳率:0%
帮助的人:21.1万
展开全部
把gets(all);这句改成
char c;
int i=0;
while((c=getchar())!='\n')
{
if(i<N) all[i++]=c;
}
这样应该就好了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
_梦幻阳光
2013-04-25 · TA获得超过978个赞
知道答主
回答量:219
采纳率:0%
帮助的人:173万
展开全部
#include<stdio.h>
int main()
{
char str[100];
int i=0;
int num=0,ch=0,blank=0,other=0;

gets(str);
while(str[i]!='\0')
{
if((str[i]>='A' && str[i]<='Z') || (str[i]>='a' && str[i]<='z'))
ch++;//字母
else if(str[i]>='0' && str[i]<='9')
num++;//数字
else if(str[i]==' ')
blank++;//空格
else
other++;

i++;
}
printf("数字%d个,字母%d个,空格%d个,其他%d个\n",num,ch,blank,other);
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式