Computer Science, asked by nisarbatta786in, 6 months ago

Write a program in python to find the greatest number among three numbers​

Answers

Answered by yashg30
32

Explanation:

# Python program to find the largest number among the three input numbers.

# take three numbers from user.

num1 = float(input("Enter first number: "))

num2 = float(input("Enter second number: "))

num3 = float(input("Enter third number: "))

if (num1 > num2) and (num1 > num3):

largest = num1

Answered by SASHANKSAHIL
46

Answer:

I have pined the image of program, go through it you will get it

Hope you may get it

Mark as brainliests

And, Thank You...

Attachments:
Similar questions