Skip to main content

Greatest of 3 numbers.( Nested IF-ELSE)

PROCEDURE:-

  1. input values for a,b,and c.
  2. check whether a is greater than b and c
  3. if so a will be greatest
  4. if not c will be greatest
  5. if a is not greater than b and c
  6. then check whether b is greater than c
  7. if yes b is greatest
  8. if no c is greatest


CODE:-

#include<stdio.h>
void main()
{
int a,b,c;
printf (“enter values for a,b,c”);
scanf(“%d %d %d”,&a,&b.&c);
if(a>b)
     {
        if(a>c)
           printf(“ %d is the greatest “,a);
        else
           printf(“%d is the greatest”,c);
        }
 else {
           if(b>c)
            printf(“%d is the greatest”,b);
          else
             printf(“%d is the greatest”,c);
         }
}
Input:- enter values for a,b,c
               a=5, b=6, c=7
Output:- 7 is geatest

Comments