按照要求编写程序:有一行文字,不超过80个字符,分别统计出其中英文大写字母、小写字母、数字、空格、及其它字符的个数。
时间: 2024-01-29 11:02:00 浏览: 74
好的,以下是Python 3的程序代码:
```python
text = input("请输入一行文字: ") # 获取输入的字符串
# 初始化计数器
upper_count = 0
lower_count = 0
digit_count = 0
space_count = 0
other_count = 0
# 遍历字符串,统计各类字符的个数
for c in text:
if c.isupper():
upper_count += 1
elif c.islower():
lower_count += 1
elif c.isdigit():
digit_count += 1
elif c.isspace():
space_count += 1
else:
other_count += 1
# 输出各类字符的个数
print("英文大写字母个数:", upper_count)
print("英文小写字母个数:", lower_count)
print("数字个数:", digit_count)
print("空格个数:", space_count)
print("其它字符个数:", other_count)
```
程序会提示用户输入一行文字,然后分别统计其中英文大写字母、小写字母、数字、空格、及其它字符的个数,并输出结果。
相关问题
1、按照要求编写程序:有一行文字,不超过 80 个字符,分别统计出其中英文大写 字母、小写字母、数字、空格、及其它字符的个数,
好的,以下是 Python 代码实现:
```python
s = input("请输入一行文字(不超过80个字符):")
upper_count = 0
lower_count = 0
digit_count = 0
space_count = 0
other_count = 0
for c in s:
if c.isupper():
upper_count += 1
elif c.islower():
lower_count += 1
elif c.isdigit():
digit_count += 1
elif c.isspace():
space_count += 1
else:
other_count += 1
print("大写字母个数:", upper_count)
print("小写字母个数:", lower_count)
print("数字个数:", digit_count)
print("空格个数:", space_count)
print("其它字符个数:", other_count)
```
运行结果如下:
```
请输入一行文字(不超过80个字符):Hello, 123 World!
大写字母个数: 2
小写字母个数: 8
数字个数: 3
空格个数: 2
其它字符个数: 1
```
按照要求C语言编写程序:有一行文字,不超过80个字符,分别统计出其中英文大写字母、小写字母、数字、空格、及其它字符的个数。
好的,以下是代码实现:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[81];
int uppercase = 0, lowercase = 0, digits = 0, spaces = 0, others = 0;
printf("请输入一行文字,不超过80个字符:\n");
fgets(str, 81, stdin);
for (int i = 0; str[i] != '\0'; i++) {
if (isupper(str[i])) {
uppercase++;
} else if (islower(str[i])) {
lowercase++;
} else if (isdigit(str[i])) {
digits++;
} else if (isspace(str[i])) {
spaces++;
} else {
others++;
}
}
printf("大写字母个数:%d\n", uppercase);
printf("小写字母个数:%d\n", lowercase);
printf("数字个数:%d\n", digits);
printf("空格个数:%d\n", spaces);
printf("其它字符个数:%d\n", others);
return 0;
}
```
程序中,我们使用了 `fgets` 函数来获取输入的一行字符串,然后使用 `isupper`、`islower`、`isdigit`、`isspace` 函数来判断字符的类型,最后统计个数并输出。
阅读全文