PROCEDURE:-
#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
- 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
#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
Post a Comment