输入一行字符,分别统计出其中英文字母空格数字和其他字符个数的编程
展开全部
#include<stdio.h>
#include<conio.h>
int main()
{
int a=0,b=0,c=0,d=0;
char e;
printf("输入一串字符(回车结束):\n");
while((e=getch())!=13)
{
printf("%c",e);
if((e>='a'&&e<='z')||(e>='A'&&e<='Z'))
a++;
else if(e>='0'&&e<='9')
b++;
else if(e==' ')
c++;
else
d++;
}
printf("\n英文字母:%d个,数字: %d个,空格:%d个,其他:%d个\n",a,b,c,d);
return 0;
}
#include<conio.h>
int main()
{
int a=0,b=0,c=0,d=0;
char e;
printf("输入一串字符(回车结束):\n");
while((e=getch())!=13)
{
printf("%c",e);
if((e>='a'&&e<='z')||(e>='A'&&e<='Z'))
a++;
else if(e>='0'&&e<='9')
b++;
else if(e==' ')
c++;
else
d++;
}
printf("\n英文字母:%d个,数字: %d个,空格:%d个,其他:%d个\n",a,b,c,d);
return 0;
}
追问
谢谢了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询