if,else语句猜最大值
Posted evatan123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了if,else语句猜最大值相关的知识,希望对你有一定的参考价值。
num1 = input("Num1:") num2 = input("Num2:") num3 = input("Num3:") max_num = 0 if num1 > num2: max_num = num1 if max_num > num3: print("Max number is", max_num) else: print("Max num is", num3) else: num1 < num2 max_num = num2 if max_num > num3: print("Max number is", max_num) else: print("Max num is", num3)
以下代码用于猜测num1,num2,num3中的最大值,注意书写格式:
num1 = input("Num1:")
num2 = input("Num2:")
num3 = input("Num3:")
max_num = 0
if num1 > num2:
max_num = num1
if max_num > num3:
print("Max number is", max_num)
else:
print("Max num is", num3)
else:
num1 < num2
max_num = num2
if max_num > num3:
print("Max number is", max_num)
else:
print("Max num is", num3)
以上是关于if,else语句猜最大值的主要内容,如果未能解决你的问题,请参考以下文章