利用C语言输入一行字符分别统计出其中的大写字母、小写字母、数字和其他字符的个数
时间: 2023-12-14 16:03:00 浏览: 114
C语言程序设计-输入一行字符,分别统计出英文大小写字母、空格、数字和其他字符的个数
5星 · 资源好评率100%
下面是利用C语言输入一行字符分别统计出其中的大写字母、小写字母、数字和其他字符的个数的代码:
```c
#include <stdio.h>
#include <ctype.h>
int main()
{
char c;
int upper = 0, lower = 0, digit = 0, other = 0;
printf("请输入一行字符:\n");
while ((c = getchar()) != '\n')
{
if (isupper(c))
upper++;
else if (islower(c))
lower++;
else if (isdigit(c))
digit++;
else
other++;
}
printf("大写字母:%d\n", upper);
printf("小写字母:%d\n", lower);
printf("数字:%d\n", digit);
printf("其他字符:%d\n", other);
return 0;
}
```
阅读全文