Skip to main content

Largest and smallest of 3 numbers in python | solution | program

 Largest  among 3 numbers

  • Read three integers a, b and c.
  • use control structures (if , elif, else) to check the condition.
  • if a is greater than b and a  is greater than c then print- a is greater value.
  • if b is greater than a and b  is greater than c then print- b is greater value.
  • if c is greater than b and c  is greater than a then print- c is greater value.

Least among 3 numbers

  • use control structures (if , elif, else) to check the condition.
  • if a is smaller than b and a  is smaller than c then print- a is smaller value.
  • if b is smaller than a and b  is smaller than c then print- b is smaller value.
  • if c is smaller than b and c  is smaller than a then print- c is smaller value.

Input :

a =10
b=20
c=5

Output :

b is greater value
c is least value

Program in python 

#program to print largest and least value 
a=int(input("enter first num "))
b=int(input("enter second num "))
c=int(input("enter third num "))
# greatest or largest value
if(a>b and a>c):
    print("a is greater value")
elif(b>a and b>c):
    print("b is greater value")
else:
    print("c is greater value")
#smallest or least value
if(a

Output :

enter first num 10
enter second num 20
enter third num 5
b is greater value
c is least value

Comments

Popular posts from this blog

Day 3: Intro to Conditional Statements | HackerRank | solution in python

Objective In this challenge, we learn about conditional statements. Check out the Tutorial tab for learning materials and an instructional video. Task Given an integer,  , perform the following conditional actions: If   is odd, print  Weird If   is even and in the inclusive range of   to  , print  Not Weird If   is even and in the inclusive range of   to  , print  Weird If   is even and greater than  , print  Not Weird Complete the stub code provided in your editor to print whether or not   is weird. Input Format A single line containing a positive integer,  . Constraints Output Format Print  Weird  if the number is weird; otherwise, print  Not Weird . Sample Input 0 3 Sample Output 0 Weird Sample Input 1 24 Sample Output 1 Not Weird Explanation Sample Case 0:    is odd and odd numbers are weird, so we print  Weird . Sample Case 1: ...

Program to Convert Centimeter to meter and kilometer in python

 Convert Centimeter to meter and kilometer. 1 meter  = 100 centimeters 1 kilometer = 100000 centimeters Read the length in centimeters. use formulae and get the output. check the below code . Program to Convert Centimeter to meter and kilometer Input : enter length in centimeters 100 Output : 100.0 centimeters = 1.0 meters. 100.0 centimeters = 1e-05 kilometers. # program to convert centimeter to meter and kilometer cm = float(input("enter length in centimeters ")) # centimeter to meter meter = 0.01*cm print(cm," centimeters = ",meter," meters.") # centimeter to kilometer km = 0.00001 print(cm," centimeters = ",km," kilometers.") Output : enter length in centimeters 100 100.0 centimeters = 1.0 meters. 100.0 centimeters = 1e-05 kilometers.

Day 0: Hello, World. | HackerRank || Python3

Objective In this challenge, we review some basic concepts that will get you started with this series. You will need to use the same (or similar) syntax to read input and write output in challenges throughout HackerRank. Check out the Tutorial tab for learning materials and an instructional video!  Task  To complete this challenge, you must save a line of input from stdin to a variable, print Hello, World. on a single line, and finally print the value of your variable on a second line. You've got this!   Note:  The instructions are Java-based, but we support submissions in many popular languages. You can switch languages using the drop-down menu above your editor, and the variable may be written differently depending on the best-practice conventions of your submission language.   Input Format  A single line of text denoting (the variable whose contents must be printed).  Output Format   Print Hello, World. on the first line, and ...