Skip to content

Commit

Permalink
Create findlargestno.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alivapriyadarshini5 authored Oct 23, 2020
1 parent 59527c7 commit b2c6dc3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions findlargestno.md
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)

0 comments on commit b2c6dc3

Please sign in to comment.