write a program to find out highest number out of three that entered by user in python
Answers
Answered by
6
Answer:
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
0
Answer:
sorry friend dont no . please mark as brainlist
Similar questions
Math,
3 months ago
English,
3 months ago
English,
3 months ago
English,
6 months ago
Hindi,
6 months ago
Political Science,
10 months ago
Computer Science,
10 months ago