Computer Science, asked by norricol000, 9 hours ago

Write a program that takes three numbers as input from the user, and prints the largest. using python

Answers

Answered by fatma703
1

Answer:

num3 = float(input("Enter third number: ")) if (num1 > num2) and (num1 > num3): largest = num1.

Similar questions