in Education by
write a program in python to find the greatest of three no. given by user Select the correct answer from above options

1 Answer

0 votes
by
 
Best answer
Source Code:- # 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.

Related questions

0 votes
    write a program to read an integer and find its reverse. note: if user enter 1234 then the output should be 4321 in Python Select the correct answer from above options...
asked Dec 2, 2021 in Education by JackTerrance
0 votes
    Write a program to accept string from user and search a given character from string without using find() function Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    Write a python program to print first n(entered by user) even natural numbers. Select the correct answer from above options...
asked Dec 25, 2021 in Education by JackTerrance
0 votes
    write an if statement program in java to find the smallest of three given integers using min() method of the Math ... I will report. Select the correct answer from above options...
asked Dec 19, 2021 in Education by JackTerrance
0 votes
    Write a program to accept a filename from the user and display all the lines from the file which contain python comment character ‘#’. Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    to write a program to accept marks of three subjects and find the total mark and average marks in 3 subject Select the correct answer from above options...
asked Dec 27, 2021 in Education by JackTerrance
0 votes
    to write a program to accept marks of three subjects and find the total mark and average marks in 3 subject Select the correct answer from above options...
asked Dec 26, 2021 in Education by JackTerrance
0 votes
    write a program to input three integers and find the difference between their sum and difference Select the correct answer from above options...
asked Dec 20, 2021 in Education by JackTerrance
0 votes
    write a qbasic program to find out the maximum number from two given number Select the correct answer from above options...
asked Nov 27, 2021 in Education by JackTerrance
0 votes
    Write an if statement to find the smallest of three given integers using min() method of the Math class. Plz solve this quickly.. Select the correct answer from above options...
asked Dec 20, 2021 in Education by JackTerrance
0 votes
    Write down three types of no ball. Select the correct answer from above options...
asked Aug 3, 2022 in Education by JackTerrance
0 votes
    Write a program in Java to find the area and perimeter of a right- angled triangle by using function ... inputs. angled triangle Select the correct answer from above options...
asked Dec 7, 2021 in Education by JackTerrance
...