wap to enter the highest from given 3 number
Answers
Answered by
1
Answer:
THIS IS A PYHTON PROGRAM....
n=int(input("Enter 1st number= "))
m=int(input("Enter 2nd number= "))
o=int(input("Enter 3rd number= "))
if n>m and n>o:
print("The 1st number is the greatest")
elif m>n and m>o:
print("The 2nd number is the greatest")
elif o>n and o>m:
print("The 3rd number is the greatest")
else:
print("All the numbers all equal")
Similar questions
Math,
5 months ago
Computer Science,
5 months ago
Science,
11 months ago
English,
1 year ago
Science,
1 year ago