从键盘输入一串字符(以回车结束),分别统计其中大写字母、小写字母、数字、空格和其他字符的个数。
时间: 2023-12-12 11:27:47 浏览: 76
从键盘输入一串字符,分别统计其中的字母,数字字符和其他[文].pdf
好的,这个问题可以回答。
可以利用循环遍历每一个字符,再通过判断其ASCII码值来进行分类统计。具体代码如下:
```
#include <stdio.h>
int main()
{
int upper_count = 0, lower_count = 0, digit_count = 0, space_count = 0, other_count = 0;
char c;
printf("请输入一串字符:\n");
while ((c = getchar()) != '\n')
{
if (c >= 'A' && c <= 'Z')
upper_count++;
else if (c >= 'a' && c <= 'z')
lower_count++;
else if (c >= '0' && c <= '9')
digit_count++;
else if (c == ' ')
space_count++;
else
other_count++;
}
printf("大写字母 %d 个,小写字母 %d 个,数字 %d 个,空格 %d 个,其他字符 %d 个\n", upper_count, lower_count, digit_count, space_count, other_count);
return 0;
}
```
输入: Hello World! 123
输出: 大写字母 2 个,小写字母 8 个,数字 3 个,空格 2 个,其他字符 1 个
阅读全文