python作业:设计一个程序让三个数比大小
时间: 2024-09-18 11:19:10 浏览: 36
pytorch框架基于BP三层全连接神经网络实现的MNIST手写数字识别python源码+项目说明(人工智能课程作业).zip
在Python中,你可以设计一个简单的程序来比较三个数的大小。这里是一个基本的示例,通过条件语句(if...elif...else)实现了这个功能:
```python
def compare_numbers(num1, num2, num3):
# 比较第一个数和第二个数
if num1 > num2:
print(f"{num1} is greater than {num2}")
elif num1 < num2:
print(f"{num1} is less than {num2}")
else:
print("Both numbers are equal")
# 然后再比较当前的结果和第三个数
if (num1 > num2) and (num1 > num3):
print(f"{num1} is also greater than {num3}")
elif (num2 > num1) and (num2 > num3):
print(f"{num2} is greater than both {num1} and {num3}")
else:
print(f"{num3} is the greatest among the three")
# 测试函数
compare_numbers(5, 2, 8)
```
当你运行这个程序时,它会首先显示前两个数的大小关系,然后再显示整个三数之间的最大值。
阅读全文