3つの数字の中から最大のものを見つけるPythonプログラム

Python

以下のプログラムでは、3つの数値がに格納されています num1num2 そして num3 それぞれ。 私たちは使用しました if...elif...else 3つの中で最大のものを見つけて表示するためのはしご。

ソースコード

# Python program to find the largest number among the three input numbers

# change the values of num1, num2 and num3
# for a different result
num1 = 10
num2 = 14
num3 = 12

# uncomment following lines to take three numbers from user
#num1 = float(input("Enter first number: "))
#num2 = float(input("Enter second number: "))
#num3 = float(input("Enter third number: "))

if (num1 >= num2) and (num1 >= num3):
   largest = num1
elif (num2 >= num1) and (num2 >= num3):
   largest = num2
else:
   largest = num3

print("The largest number is", largest)

出力

The largest number is 14.0

注意: プログラムをテストするには、の値を変更します num1num2 そして num3



Hope this helps!

Source link

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です