Write a python program to find greater number.
Answers
Answered by
2
Explanation:
Python Program to Find the Largest Among Three Numbers
# 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
2
Explanation:
Python Program to Find the Largest Among Three Numbers
•# 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.
Similar questions
English,
2 months ago
Science,
5 months ago
Physics,
5 months ago
Environmental Sciences,
11 months ago