python编写程序,输出两位整数中个位大于十位的数,并统计满足条件的个数。
时间: 2024-09-18 13:02:27 浏览: 40
Python3实现个位数字和十位数字对调, 其乘积不变
5星 · 资源好评率100%
在Python中,你可以通过遍历所有两位数并检查每一位数字的关系来实现这个功能。首先,创建一个列表存储所有两位数,然后定义一个函数来判断每个数是否符合条件,最后统计并输出满足条件的个数。以下是详细的步骤:
```python
# 创建一个列表,包含从10到99的所有两位数
numbers = list(range(10, 100))
# 定义一个辅助函数来检查个位是否大于十位
def check_number(num):
return num // 10 < num % 10
# 初始化计数器
count = 0
# 遍历列表,对每个数应用检查函数,如果满足条件就增加计数器
for number in numbers:
if check_number(number):
count += 1
print(f"Number {number} has its units digit greater than tens digit.")
# 输出满足条件的个数
print(f"\nThere are {count} numbers where the units digit is greater than the tens digit.")
阅读全文