Enter 3 numbers
Find the maximum
Display maximum
(python)
Answers
Answered by
4
Explanation:
# Python program to find the largest number among the three input numbers.
# 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.
Answered by
73
Answer:
Heya Here's the required Answer mate
# Python program to find the largest number among the three input numbers
# 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)
Hope it helps dear
have a great day ahead
Similar questions
English,
1 month ago
Hindi,
1 month ago
Social Sciences,
1 month ago
Geography,
2 months ago
Social Sciences,
2 months ago
Science,
10 months ago
Hindi,
10 months ago