编写一个程序,从键盘输入一行字符按Enter键结束分别统计并输出出英文字母、空格、数字及其他字符的个数。
输出格式如下:letters=xxspace=xxdigit=xxother=xxxx为个数提示:1.字符输入用getchar()函数,并采用while语句while((...
输出格式如下:letters=xx space=xx digit=xx other=xx xx为个数
提示:1.字符输入用getchar()函数,并采用while语句
while((c=getchar())!='\n') 输入为换行符结束循环。
2.英文字母判断: if(c>='a'&&c<='z'||c>='A'&&c<='Z') 展开
提示:1.字符输入用getchar()函数,并采用while语句
while((c=getchar())!='\n') 输入为换行符结束循环。
2.英文字母判断: if(c>='a'&&c<='z'||c>='A'&&c<='Z') 展开
2个回答
展开全部
楼上的数字也要用字符形式哦.
#include<stdio.h>
int main()
{
int letters,space,digit,other;
char c;
letters=0,space=0,digit=0,other=0;
while((c=getchar())!='\n')
{if(c>='a'&&c<='z'||c>='A'&&c<='Z')
letters ++;
else if(c>='0'&&c<='9')
digit++;
else if(c==' ')
space++;
else
other++;}
printf("letters=%d space=%d digit=%d other=%d\n",letters,space,digit,other);
}
#include<stdio.h>
int main()
{
int letters,space,digit,other;
char c;
letters=0,space=0,digit=0,other=0;
while((c=getchar())!='\n')
{if(c>='a'&&c<='z'||c>='A'&&c<='Z')
letters ++;
else if(c>='0'&&c<='9')
digit++;
else if(c==' ')
space++;
else
other++;}
printf("letters=%d space=%d digit=%d other=%d\n",letters,space,digit,other);
}
展开全部
#include"stdio.h"
void main()
{int letters,space,digit,other;
letters=space=digit=other=0;
char c;
while((c=getchar())!='\n')
{if(c>='a'&&c<='z'||c>='A'&&c<='Z')
letters ++;
else if(c>=0&&c<=9)
digit++;
else if(c==' ')
space++;
else
other++;}
printf("letters=%d space=%d digit=%d other=%d\n",letters,space,digit,other);
}
void main()
{int letters,space,digit,other;
letters=space=digit=other=0;
char c;
while((c=getchar())!='\n')
{if(c>='a'&&c<='z'||c>='A'&&c<='Z')
letters ++;
else if(c>=0&&c<=9)
digit++;
else if(c==' ')
space++;
else
other++;}
printf("letters=%d space=%d digit=%d other=%d\n",letters,space,digit,other);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询