从键盘读入不超过20个字符,统计其中大写字母、小写字母、数字、其他字符的个数。 输入格式: 在一行中输入字符 输出格式: 在一行中分别输出各种字符的个数。
时间: 2024-11-27 16:21:16 浏览: 37
C++统计中英文大小写字母、数字、空格及其他字符个数的方法
5星 · 资源好评率100%
这个程序的需求是编写一段代码,它接收用户从键盘输入的一行最多20个字符,并统计其中的大写字母、小写字母、数字以及非字母数字字符的数量。以下是使用Python的一个简单示例:
```python
def count_chars(input_str):
uppercase = sum(1 for c in input_str if c.isupper())
lowercase = sum(1 for c in input_str if c.islower())
digits = sum(1 for c in input_str if c.isdigit())
others = len(input_str) - (uppercase + lowercase + digits)
return uppercase, lowercase, digits, others
input_string = input("请输入不超过20个字符: ").strip()[:20]
if len(input_string) > 20:
print("输入过长,请输入不超过20个字符!")
else:
result = count_chars(input_string)
print(f"大写字母: {result[0]}, 小写字母: {result[1]}, 数字: {result[2]}, 其他字符: {result[3]}")
```
阅读全文