Computer Science, asked by basantrawat59, 4 months ago

write a program to find out highest number out of three that entered by user in python ​

Answers

Answered by Anonymous
6

Answer:

Python Program to Find the Largest Among Three Numbers

  1. # Python program to find the largest number among the three input numbers.
  2. # take three numbers from user.
  3. num1 = float(input("Enter first number: "))
  4. num2 = float(input("Enter second number: "))
  5. num3 = float(input("Enter third number: "))
  6. if (num1 > num2) and (num1 > num3):
  7. largest = num1.
Answered by sameerjavedsaifi
0

Answer:

sorry friend dont no . please mark as brainlist

Similar questions