C语言:输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数
#include<stdio.h>intmain(){chara[50];intletter=0,blank=0,number=0,other=0,i;gets(a);c...
#include<stdio.h>
int main()
{
char a[50];
int letter=0,blank=0,number=0,other=0,i;
gets(a);
char c;
for(i=0;i<50;i++)
{
if((c>='A'&&c<='Z')||(c>='a'&&c<='z'))
letter++;
else if(c==' ')
blank++;
else if(c>='0'&&c<='9')
number++;
else other++;
}
printf("letter=%d,blank=%d,number=%d,other=%d",letter,blank,number,other);
return 0;
}
程序有错误,怎么改 展开
int main()
{
char a[50];
int letter=0,blank=0,number=0,other=0,i;
gets(a);
char c;
for(i=0;i<50;i++)
{
if((c>='A'&&c<='Z')||(c>='a'&&c<='z'))
letter++;
else if(c==' ')
blank++;
else if(c>='0'&&c<='9')
number++;
else other++;
}
printf("letter=%d,blank=%d,number=%d,other=%d",letter,blank,number,other);
return 0;
}
程序有错误,怎么改 展开
16个回答
展开全部
#include<stdio.h>
void main()
{
int num=0,ch=0,other=0,space=0;
char c;
while ((c=getchar()) != '\n')
{
if (c <= '9' && c >= '0') num++;
else if (c <='z' && c>='a')ch++;
else if (c <='Z' && c>='A') ch+;
else if (c == ' ') space++;
else other++;
}
printf("num:%d, ch:%d, space:%d,other: %d", num,ch, space,other);
}
void main()
{
int num=0,ch=0,other=0,space=0;
char c;
while ((c=getchar()) != '\n')
{
if (c <= '9' && c >= '0') num++;
else if (c <='z' && c>='a')ch++;
else if (c <='Z' && c>='A') ch+;
else if (c == ' ') space++;
else other++;
}
printf("num:%d, ch:%d, space:%d,other: %d", num,ch, space,other);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一、问题分析:
输入一行字母,那么会以换行结束。所以可以存入数组,也可以逐个输入,遇到换行结束。
要统计各个类的个数,就要逐个判断是哪个分类的。
由于在ASCII码中,数字,大写字母,小写字母分别连续,所以可以根据边界值判断类型。
二、算法设计:
1、读入字符,直到遇到换行结束。
2、对于每个字符,判断是字母还是数字,或者空格,或者是其它字符。
3、对于每个字符判断后,对应类别计数器自加。
4、最终输出结果。
三、参考代码:
#include <stdio.h>
int main()
{
int a,b,c,d,ch;
a=b=c=d=0;//计数器初始化为0.
while((ch=getchar())!='\n')//循环读取字符,到换行结束。
{
if(ch>='0' && ch<='9')//数字
a++;
else if((ch>='a' && ch<='z')||(ch>='A' && ch<='Z'))//字母
b++;
else if(ch==' ')//空格
c++;
else //其它
d++;
}
printf("%d %d %d %d\n", a,b,c,d);//输出结果。
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-04-01
展开全部
用for语句编的.....
#include<stdio.h>
void main()
{
int z,k,s,q;
char ch;
z=k=s=q=0;
for(ch=getchar();ch!='\n';;)
{
if(ch>='a'&&ch<='z'||ch>='A'&&ch<='Z')
z++;
else if(ch==' ')
k++;
else if(ch>='0'&&ch<='9')
s++;
else q++;
ch=getchar();
}
printf("zimu:%d\nspace:%d\nshuzi:%d\nqita:%d\n"z,k,s,q);
}
#include<stdio.h>
void main()
{
int z,k,s,q;
char ch;
z=k=s=q=0;
for(ch=getchar();ch!='\n';;)
{
if(ch>='a'&&ch<='z'||ch>='A'&&ch<='Z')
z++;
else if(ch==' ')
k++;
else if(ch>='0'&&ch<='9')
s++;
else q++;
ch=getchar();
}
printf("zimu:%d\nspace:%d\nshuzi:%d\nqita:%d\n"z,k,s,q);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-03-30
展开全部
#include <stdio.h>
#include <string.h>
#define A 80
main()
{
char str[A];
int len,i,letter=0,digit=0,space=0,others=0;
printf("请输入一行字符:");
gets(str);
len=strlen(str);
for(i=0;i<len;i++)
{
if(str[i]>='a'&&str[i]<='z'||str[i]>='A'&&str[i]<='Z')
letter++;
else if(str[i]>='0'&&str[i]<='9')
digit++;
else if(str[i]==' ')
space++;
else
others++;
}
printf("英文字符有:%d\n",letter);
printf("数字字符有:%d\n",digit);
printf("空格有:%d\n",space);
printf("其他字符有:%d\n",others);
}
#include <string.h>
#define A 80
main()
{
char str[A];
int len,i,letter=0,digit=0,space=0,others=0;
printf("请输入一行字符:");
gets(str);
len=strlen(str);
for(i=0;i<len;i++)
{
if(str[i]>='a'&&str[i]<='z'||str[i]>='A'&&str[i]<='Z')
letter++;
else if(str[i]>='0'&&str[i]<='9')
digit++;
else if(str[i]==' ')
space++;
else
others++;
}
printf("英文字符有:%d\n",letter);
printf("数字字符有:%d\n",digit);
printf("空格有:%d\n",space);
printf("其他字符有:%d\n",others);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询