forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59527c7
commit b2c6dc3
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |