Skip to main content

PROGRAMMING FOR PROBLEM SOLVING LAB : Program 3


 3.  Write a program for find the max and min from the three numbers.

#include<stdio.h>

  void main()

  {

    int a,b,c;

  clrscr();

  printf("\n Enter three numbers:\n");

  scanf("%d%d%d",&a,&b,&c);

  if(a>b && a>c)

  printf("\n Maximum number is a = %d",a);

  else if(b>a && b>c)

  printf("\n Maximum number is b = %d",b);

  else

  printf("\n Maximum number is c = %d",c);

  if(a<b && a<c)

  printf("\n Minimum number is a = %d",a);

  else if(b<a && b<c)

  printf("\n Minimum number is b = %d",b);

  else

  printf("\n Minimum number is c = %d",c); 

  getch();

}


OUTPUT:


Enter three numbers:

54

34

21

Maximum number is a = 54

 Minimum number is c = 21

Comments

Popular posts from this blog

Learning and Development Interview Questions and answers for Mathematics-1.

  1). What is Mean, Mode and Median? Solution Answer: The mean is the average of a  collection of numbers or terms in a sequence. To calculate the mean use a formula is sum of total terms divided  by number of terms. The mode  is the most f requent number or term in a sequence. It means the number that occurred  highest number of times  in a sequence. To find the mode arrange the numbers in ascending or descending order and verify which number repeated most number of times in a sorted sequence. The median is the middle number/term where the sequence is arranged in ascending or descending order. If the sorted sequence have odd number of terms then  divide by 2 and round up to get the position of the median number.  If the  sorted sequence  have  even  number of terms then  divide by 2  to get the position of the median number.  2 ). What is the Difference between Fractional and Rational number? Solu...