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

Popular posts from this blog

Find Value of S=ut+1/2*a*t**2.

PROCEDURE:-        1.enter values for u,a,t to find distance        2.find distance with the formulae ut+1/2at 2        3.print the above result CODE:- #include<stdio.h> #include<conio.h> void main() {   float u,t,a,S;   clrscr();   printf(“enter values u,t,a”);   scanf(“%f %f %f”, &u,&t,&a);   S=(u*t)+(0.5*a*t*t);   printf(“\n  S = %f”, S); } Input:- enter values u,t,a               U=10,t=4,a=4.9 Output:- S =79.200