top of page
Writer's pictureRajesh Singh

Python program to find largest number of three or two numbers

Updated: Feb 16, 2022



To find the largest number among the three input numbers.


a = int(input("Enter first number: ")) b= int(input("Enter second number: ")) c = int(input("Enter third number: ")) if a >b and a>c: print("The Largest number is ",a) elif b>a and b >a: print("The Largest number is ",b)

else: print("The Largest number is ",c) Output:

Enter first number: 6

Enter second number: 7

Enter third number: 8

The largest number is 8

Video:




Write python program to find the largest number among the two input numbers.

Program:

a = int(input("Enter first number: "))

b= int(input("Enter second number: "))

if a>b:

print("The largest number is",a)

else:

print("The largest number is",b)

Output:

Enter first number: 67

Enter second number: 90

The largest number is 90


Write a program to input an alphabet and check whether it is a vowel or consonant.

Program:

ch=input("Enter an alphabet: ")

if ch=='a'or ch=='e' or ch=='o' or ch=='u':

print("Vowel")

else:

print("Consonant")

Output:

Enter an alphabet: e

Vowel


135 views0 comments

Recent Posts

See All

コメント


bottom of page