C 练习实例17

简介: C 练习实例17

题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
程序分析:利用while语句,条件为输入的字符不为'\n'。
实例

include

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;
}
以上实例输出结果为:

请输入一些字母:
www.runoob.com 123
字母=12,数字=3,空格=1,其他=2

目录
相关文章
|
6月前
C实例1
C实例1。
31 3
|
6月前
C 练习实例6
C 练习实例6。
201 3
|
6月前
C 练习实例2
程序分析:请利用数轴来分界,定位。注意定义时需把奖金定义成双精度浮点(double)型。
47 1
|
1月前
实例1
实例1.
22 2
|
6月前
C 实例2
C 实例2。
32 3
|
6月前
C练习实例12
C练习实例12。
36 0
|
6月前
C 练习实例11
C 练习实例11。
38 1
|
6月前
C 练习实例5
C 练习实例5。
48 2
|
6月前
C练习实例10
C练习实例10。
38 0
|
6月前
C练习实例9
C练习实例9
36 0