PROCEDURE:-
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
- input values for a,b,and c.
- check whether a is greater than b and c
- if so a will be greatest
- if not c will be greatest
- if a is not greater than b and c
- then check whether b is greater than c
- if yes b is greatest
- 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
Post a Comment