码迷,mamicode.com
首页 > 其他好文 > 详细

输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

时间:2018-07-17 16:21:52      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:英文字母   lse   中英文   git   while   space   std   har   其它   

#include<stdio.h>

int main()
{
char c;
int letters=0,space=0,digit=0,other=0;
printf("请输入一行字符:");
while ((c=getchar())!=‘\n‘)
{
if (c >= ‘a‘&&c <= ‘z‘ || c >= ‘A‘&&c <= ‘Z‘)
{
letters++;
}
else if (c == ‘ ‘)
{
space++;
}
else if (c >= ‘0‘&&c <= ‘9‘)
{
digit++;
}
else
{
other++;
}
}
printf("字母数:%d\n空格数:%d\n数字数:%d\n其他字符:%d\n",letters,space,digit,other);
return 0;
}






//注意:
while ((c=getchar())!=‘\n‘):
先输入数据,之后getchar()的返回值一个接一个赋给c, 然后比较c是不是不等于‘回车键,如果不等于回车键就会执行循环。如果等于就会结束。

输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

标签:英文字母   lse   中英文   git   while   space   std   har   其它   

原文地址:https://www.cnblogs.com/gs1124/p/9323110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!