

InterviewSolution
Saved Bookmarks
1. |
Write a program to accept three integers and print the largest of the three. |
Answer» x = y = z = 0x = float( input("Enter the first number:"))y = float(input("Enter the second digit number:"))z = float (input("Enter the third number:"))max = xif y > max:max = yprint("Largest number is",max) | |