Skip to main content

Find greatest of 3 numbers.(Using conditional operator)

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,y;
  printf(“enter values for a,b,c”);
  scanf(“%d %d %d “,&a,&b,&c);
  y=(a>b)?(((a>c)?a:c) : ((b>c)?b:c))
  printf(“%d is the greatest “,y);
}



Input:- enter values for a,b,c
               a=6, b=8, c=7
Output:- b =8 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