Write a program that takes three numbers as input from the user, and prints the largest. using python
Answers
Answered by
1
Answer:
num3 = float(input("Enter third number: ")) if (num1 > num2) and (num1 > num3): largest = num1.
Similar questions