编写一个能计算三个数最大值的程序
时间: 2023-05-13 20:06:49 浏览: 82
三个数求最大值
以下是一个能计算三个数最大值的 Python 程序:
```
a = int(input("请输入第一个数:"))
b = int(input("请输入第二个数:"))
c = int(input("请输入第三个数:"))
if a >= b and a >= c:
print("最大值为:", a)
elif b >= a and b >= c:
print("最大值为:", b)
else:
print("最大值为:", c)
```
这个程序会要求用户输入三个数,然后计算出它们的最大值并输出。
阅读全文