find greatest number in 4 number in python
Answers
Answered by
1
# 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 between",num1,",",num2,"and",num3,"is",largest)
gauravkumar303147:
but what about in 4 number
Answered by
0
9999 I think I think it's 9999
Similar questions
Business Studies,
7 months ago
Math,
7 months ago
Math,
1 year ago
English,
1 year ago
Math,
1 year ago