From 748e4f0c31b6671d2bdb194a025f22c74f480ef6 Mon Sep 17 00:00:00 2001 From: Chaitanya Desai <71583721+itsmekrrish@users.noreply.github.com> Date: Thu, 1 Oct 2020 20:03:30 +0530 Subject: [PATCH] Largest Among Three Numbers Note: To test the program, change the values of num1, num2 and num3. --- LargestAmongThreeNum | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LargestAmongThreeNum diff --git a/LargestAmongThreeNum b/LargestAmongThreeNum new file mode 100644 index 0000000..a4fb15c --- /dev/null +++ b/LargestAmongThreeNum @@ -0,0 +1,21 @@ +# 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)