c语言,编程实现,输入一行字符,分别统计其中英文字母,空格 ,数字和其它字符的个数。
2个回答
展开全部
main()
{
int
zm=0,kg=0,sz=0,qt=0;
char
c;
while(
(c
=
getchar())
!=
'\n'
)
//c=getchar是从键盘获取一个字符并赋值给c,\n是换行的意思
{
if(
(c>='a'&&c<='z')
||
(c>='A'&&c<='Z')
)
zm++;
else
if(
c>='0'&&c<='9'
)
sz++;
else
if(
c=='
'
)
kg++;
else
qt++;
}
printf("字母=%d,数字=%d,空格=%d,其他=%d\n",zm,sz,kg,qt);
}
{
int
zm=0,kg=0,sz=0,qt=0;
char
c;
while(
(c
=
getchar())
!=
'\n'
)
//c=getchar是从键盘获取一个字符并赋值给c,\n是换行的意思
{
if(
(c>='a'&&c<='z')
||
(c>='A'&&c<='Z')
)
zm++;
else
if(
c>='0'&&c<='9'
)
sz++;
else
if(
c=='
'
)
kg++;
else
qt++;
}
printf("字母=%d,数字=%d,空格=%d,其他=%d\n",zm,sz,kg,qt);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
以下程序在win-tc下调试通过
/*
输入一行文字
找出其中大写字母小写字母空格数字及其他字符各有多少
*/
#
include
"stdio.h"
#
include
"conio.h"
void
main(void)
{
int
upper=0,lower=0,digit=0,space=0,other=0,i=0;
char
*p,s[80];
printf("\ninput
a
string:");
while
((s[i]=getchar())!='\n')
i++;
p=s;
while(*p!='\n')
{if((*p>='a')&&(*p<='z'))
upper++;
else
if((*p>='a')&&(*p<='z'))
lower++;
else
if(*p=='
'||*p==9)
space++;
else
if((*p>='0')&&(*p<='9'))
digit++;
else
other++;
p++;
}
printf("upper
case:%d
lower
case:%d
",upper,lower);
printf("space:%d
digit:%d
other:%d
",space,digit,other);
getch();
}
/*
输入一行文字
找出其中大写字母小写字母空格数字及其他字符各有多少
*/
#
include
"stdio.h"
#
include
"conio.h"
void
main(void)
{
int
upper=0,lower=0,digit=0,space=0,other=0,i=0;
char
*p,s[80];
printf("\ninput
a
string:");
while
((s[i]=getchar())!='\n')
i++;
p=s;
while(*p!='\n')
{if((*p>='a')&&(*p<='z'))
upper++;
else
if((*p>='a')&&(*p<='z'))
lower++;
else
if(*p=='
'||*p==9)
space++;
else
if((*p>='0')&&(*p<='9'))
digit++;
else
other++;
p++;
}
printf("upper
case:%d
lower
case:%d
",upper,lower);
printf("space:%d
digit:%d
other:%d
",space,digit,other);
getch();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |