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

我是这样写的:#include<stdio.h>voidmain(){chara[50];intletter=0,number=0,blank=0,other=0,i;g... 我是这样写的:
#include<stdio.h>
void main()
{
char a[50];
int letter=0,number=0,blank=0,other=0,i;
gets(a);
for(i=0;i<50;i++)
{
if((a[i]>='A'&&a[i]<='Z')||(a[i]>='a'&&a[i]<='z'))
letter++;
else if(a[i]>='0'&&a[i]<='9')
number++;
else if(a[i]==' ')
blank++;
else other++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}
我默认输入的字符串是小于50个字符的,问题出在其他字符(other)这里,比如我输入了15个英文字母,他就默认a这个数组里面剩下的35个为其他字符了,有什么方法可以解决么?其他的都是正确的,就这里出了问题。。。
展开
 我来答
小夏聊生活
高能答主

2019-12-07 · 专注于分享生活知识,热爱生活
小夏聊生活
采纳数:447 获赞数:114600

向TA提问 私信TA
展开全部

输入一行字符分别统计,出其中英文字母空格数字和其他字符的个数的源代码如下:

#include<stdio.h>

int main()

{

char c;

int letters=0,spaces=0,digits=0,others=0;

printf("请输入一些字母:\n");

while((c=getchar())!='\n')

{

if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))

letters++;

else if(c>='0'&&c<='9')

digits++;

else if(c==' ')

spaces++;

else

others++;

}

printf("字母=%d,数字=%d,空格=%d,其他=%d\n",letters,digits,spaces,others);

return 0;

}

扩展资料

C语言程序统计一个文件的字符数的源代码如下

#include <stdio.h>

#include <stdlib.h>

int main(void)

{

int counter = 0; //计数器

int ch; //存储从文件中读入的字符

while( EOF != (ch = getchar()) ) //使用getchar函数从标准输入中读取字符,当读取到末尾时停止循环 

{

counter++; //计数器自增 

printf("%d", counter);

return 0;

}

chendechenxi
推荐于2017-10-04 · TA获得超过676个赞
知道小有建树答主
回答量:258
采纳率:0%
帮助的人:242万
展开全部
#include<stdio.h>
void main()
{
//char a[50];
int letter=0,number=0,blank=0,other=0;
//int i;
//gets(a);
char c; 用来读取每个字符
while ((c=getchar())!='\n') //基本就是修改的这句,当读入的是回车即为结束运算
//for(i=0;i<50,a[i]='\n';i++)
{
if((c>='A'&&c<='Z')||(c>='a'&&c<='z'))
letter++;
else if(c>='0'&&c<='9')
number++;
else if(c==' ')
blank++;
else other++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}
程序已经验证过,可以执行哦~~~
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
马步
2010-05-18 · TA获得超过172个赞
知道小有建树答主
回答量:203
采纳率:0%
帮助的人:118万
展开全部
#include<stdio.h>
void main()
{
char a[50];
int letter=0,number=0,blank=0,other=0,i=0;
gets(a);
while(a[i]!='/0')
{
if((a[i]>='A'&&a[i]<='Z')||(a[i]>='a'&&a[i]<='z'))
letter++;
else if(a[i]>='0'&&a[i]<='9')
number++;
else if(a[i]==' ')
blank++;
else other++;
i++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}
在输入字符串时,记着在输入结束位置输入'/0'即可。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
已久的爱744
2010-05-18
知道答主
回答量:5
采纳率:0%
帮助的人:0
展开全部
#include<stdio.h>
void main()
{
char a[50];
int letter=0,number=0,blank=0,other=0,i;
gets(a);
for(i=0;i<50;i++)
{
if((a[i]>='A'&&a[i]<='Z')||(a[i]>='a'&&a[i]<='z'))
letter++;
else if(a[i]>='0'&&a[i]<='9')
number++;
else if(a[i]==' ')
blank++;
else other++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}
我默认输入的字符串是小于50个字符的,问题出在其他字符(other)这里,比如我输入了15个英文字母,他就默认a这个数组里面剩下的35个为其他字符了,有什么方法可以解决么?其他的都是正确的,就这里出了问题。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
魔尊8
2010-05-18 · TA获得超过1125个赞
知道小有建树答主
回答量:535
采纳率:0%
帮助的人:567万
展开全部
#include<stdio.h>
void main()
{
char a[50];
int letter=0,number=0,blank=0,other=0,i;
gets(a);
for(i=0;a[i]!='\0';i++)
{
if((a[i]>='A'&&a[i]<='Z')||(a[i]>='a'&&a[i]<='z'))
letter++;
else if(a[i]>='0'&&a[i]<='9')
number++;
else if(a[i]==' ')
blank++;
else other++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(9)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式