Largest of three numbers
Table of Contents
In this article, we will discuss the concept of Python program to Find Largest of three numbers
In this post, we are going to learn how to write a program to find largest number out of three numbers using different methods in Python program.
In this code, we will find largest number out of three numbers using if statements in Python language
Program 1
num1=76
num2=98
num3=45
#variable declaration and initilaization
if(num1>num2) and (num1>num3):
biggest=num1;
elif (num2>num1) and (num2>num3):
biggest=num2;
else:
biggest=num3;
print("The largest number is",biggest)
#display result on the screen When the above code is executed, it produces the following result
The largest number is 98
Algorithm to find the greatest of three numbers using if-elif- else statements
In this code, we will find largest number out of three numbers using if elif statements in Python language
Program 2
#Python program to find largest of three numbers
num1=int(input("Enter first number: "))
#reading the input value from user for num1
num2=int(input("Enter second number: "))
#reading the input value from user for num2
num3=int(input("Enter third number: "))
#reading the input value from user for num3
if(num1>num2) and (num1>num3):
biggest=num1;
elif (num2>num1) and (num2>num3):
biggest=num2;
else:
biggest=num3;
print("The largest number is",biggest)
#display result on the screen When the above code is executed, it produces the following result
Enter first number: 5678 Enter second number: 4325 Enter third number: 56747 The largest number is 56747
Algorithm to find the greatest of three numbers using if-elif- else statements
In this code, we will find largest number out of three numbers using function in Python language
Program 3
#Python program to find largest of three numbers
num1=int(input("Enter the first number: "));
num2=int(input("Enter the second number: "));
num3=int(input("Enter the Third number: "));
#reading the input from the user
def find_Largest():#method definition
if(num1>=num2) and (num1>=num3):
largest=num1
elif(num2>=num1) and (num2>=num3):
largest=num2
else:
largest=num3
print("Largest number is",largest)
find_Largest();#Calling the method When the above code is executed, it produces the following result
Enter the first number: 978 Enter the second number: 345 Enter the Third number: 654 Largest number is 978
Algorithm to find the greatest of three numbers using using function
In this code, we will find largest number out of three numbers using function in Python language
Program 4
#Python program to find largest of three numbers
def find_Largest(num1,num2,num3):#method definition
if(num1>=num2) and (num1>=num3):
largest=num1
elif(num2>=num1) and (num2>=num3):
largest=num2
else:
largest=num3
return largest
print("Enter three numbers")
num1=int(input());
num2=int(input());
num3=int(input());
print(find_Largest(num1,num2,num3))
When the above code is executed, it produces the following result
Enter three numbers
567
234
1022
1022
Suggested post
If statements in Python language
Nested if statement in Python language
Similar post
Java program to find middle of three
C program to find middle of three
C++ program to find middle of three
Python program to find middle of three
Java program to Find largest of three numbers
C program to Find largest of three numbers
Multiply two numbers in Java using scanner| 5 different ways In this article, we will…
5 Different ways to Divide two numbers in Java using scanner In this article, we…
Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…
10 ways to subtract two numbers in Java In this article, we will discuss the…
Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…
How to Divide two numbers in Java| 5 different ways In this article, we will…
This website uses cookies.