从键盘输入一串字符(以回车结束),分别统计其中大写字母、小写字母、数字、空格和其他字符的个数。
时间: 2023-12-12 07:47:35 浏览: 94
好的,这是一个计算类型的问题。可以使用Python或其他编程语言来实现。以下是Python代码示例:
```python
string = input("请输入一串字符: ")
upper = 0
lower = 0
digit = 0
space = 0
other = 0
for char in string:
if char.isupper():
upper += 1
elif char.islower():
lower += 1
elif char.isdigit():
digit += 1
elif char.isspace():
space += 1
else:
other += 1
print("输入的字符中:")
print("大写字母:", upper)
print("小写字母:", lower)
print("数字:", digit)
print("空格:", space)
print("其他字符:", other)
```
希望这可以帮助您解决问题!
相关问题
输入一行字符回车结束编程统计其中大写字母小写字母数字字符空格和其他字符的个数
```python
string = input("请输入一行字符:")
upper_count = 0
lower_count = 0
digit_count = 0
space_count = 0
other_count = 0
for char in string:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
elif char.isdigit():
digit_count += 1
elif char.isspace():
space_count += 1
else:
other_count += 1
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("数字个数:", digit_count)
print("空格个数:", space_count)
print("其他字符个数:", other_count)
```
示例输出:
```
请输入一行字符:Hello, World! 123
大写字母个数: 2
小写字母个数: 8
数字个数: 3
空格个数: 2
其他字符个数: 2
```
输入一行字符回车结束编程统计其中大写字母小写字母数字字符空格和其他字符的个数c语言
#include <stdio.h>
int main() {
char ch;
int upper = 0, lower = 0, digit = 0, space = 0, other = 0;
printf("请输入一行字符:\n");
while ((ch = getchar()) != '\n') {
if (ch >= 'A' && ch <= 'Z') {
upper++;
} else if (ch >= 'a' && ch <= 'z') {
lower++;
} else if (ch >= '0' && ch <= '9') {
digit++;
} else if (ch == ' ') {
space++;
} else {
other++;
}
}
printf("大写字母个数:%d\n", upper);
printf("小写字母个数:%d\n", lower);
printf("数字个数:%d\n", digit);
printf("空格个数:%d\n", space);
printf("其他字符个数:%d\n", other);
return 0;
}
阅读全文