Greatest of three numbers in Python
Python Program to get three numbers num1, num2 and num3 and find the greatest one among num1,num2 and num3.
Sample Input 1:
5 6 2
Sample Output 1:
6
Program or Solution
num1,num2,num3=map(int,input("Enter three numbers:").split(" "))
if(num1>num2 and num1>num3):
print("{} is greatest".format(num1))
elif (num2>num3):
print("{} is greatest".format(num2))
else:
print("{} is greatest".format(num3))
Program Explanation
Get three inputs num1, num2 and num3 from user using input() methods.
Check whether num1 is greater than num2 and num3 using if statement, if it is true print num1 is greatest using print() method.
Else, num2 or num3 is greatest.
So check whether num2 is greater than num3 using elseif statement.
if num2 is greater, then print num2 is greater using print() method.
Else, print num3 is greater using print() method.
Comments
Related Programs
- Python if example
- Greatest of two numbers in Python
- Smallest of two numbers in python
- ODD or Even in Python
- 3 digit number or not in python
- Smallest of three numbers in Python
- Divisible by 3 or not in python
- Leap year in python
- Last digit divisible by 3 or not in python
- Calculator in python
- grade calculation in python
- else if in python
- check whether bit is set in python
- odd or even using bitwise operator in python
coming Soon
coming Soon