输入一行字符,分别统计出其中的小写英文字母、大写英文字母、空格、数字和其它字符的个数 c语言代码
时间: 2023-11-25 13:50:26 浏览: 289
C语言程序设计-输入一行字符,分别统计出英文大小写字母、空格、数字和其他字符的个数
5星 · 资源好评率100%
以下是C语言代码,可以实现输入一行字符,分别统计出其中的小写英文字母、大写英文字母、空格、数字和其它字符的个数:
```c
#include <stdio.h>
#include <ctype.h>
int main()
{
char str[100];
int i, upper, lower, number, other, space;
printf("请输入一行字符:\n");
fgets(str, sizeof(str), stdin);
upper = lower = number = other = space = 0;
for (i = 0; str[i] != '\0'; i++)
{
if (isupper(str[i]))
upper++;
else if (islower(str[i]))
lower++;
else if (isdigit(str[i]))
number++;
else if (isspace(str[i]))
space++;
else
other++;
}
printf("大写字母个数:%d\n", upper);
printf("小写字母个数:%d\n", lower);
printf("数字个数:%d\n", number);
printf("空格个数:%d\n", space);
printf("其他字符个数:%d\n", other);
return 0;
}
```
阅读全文