1、按照要求编写程序:有一行文字,不超过 80 个字符,分别统计出其中英文大写 字母、小写字母、数字、空格、及其它字符的个数,
时间: 2024-01-29 08:04:08 浏览: 65
好的,以下是一个 Python 程序,可以实现你的要求:
```
text = input("请输入一行文字:")
upper_count = 0
lower_count = 0
digit_count = 0
space_count = 0
other_count = 0
for char in text:
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)
```
你可以将这段程序保存为一个 Python 文件,比如 `count_chars.py`,然后在命令行中运行:
```
python count_chars.py
```
接着输入一行文字,程序就会输出统计结果。
相关问题
按照要求编写程序:有一行文字,不超过80个字符,分别统计出其中英文大写字母、小写字母、数字、空格、及其它字符的个数。
好的,以下是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)
```
程序会提示用户输入一行文字,然后分别统计其中英文大写字母、小写字母、数字、空格、及其它字符的个数,并输出结果。
C语言:按照要求编写程序:有一行文字,不超过80个字符,分别统计出其中英文大写字母、小写字母、数字、空格、及其它字符的个数。
好的,以下是C语言代码实现:
```
#include <stdio.h>
#include <ctype.h>
int main() {
char text[81]; // 存储输入的字符串,最多80个字符
int i, upper = 0, lower = 0, digit = 0, space = 0, other = 0;
printf("请输入一行文字,不超过80个字符:\n");
fgets(text, 81, stdin); // 从标准输入读取字符串,包括空格
for (i = 0; text[i] != '\0'; i++) {
if (isupper(text[i]))
upper++;
else if (islower(text[i]))
lower++;
else if (isdigit(text[i]))
digit++;
else if (isspace(text[i]))
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;
}
```
运行程序后,输入一行字符串,就可以得到统计结果。注意,我们使用了标准库函数`isupper()`、`islower()`、`isdigit()`和`isspace()`来判断每个字符的类型。
阅读全文