// WAP to enter three numbers and find largest among them. #include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("Enter three number:\n"); scanf("%d%d%d",&a,&b,&c); if(a>b&&a>c) printf("%d is largest",a); else if(b>a&&b>c) printf("%d is largest",b); else printf("%d is largest",c); getch(); }
// WAP to enter three numbers and find middle number among them. #include<stdio.h> #include<conio.h> void main ( ) { int a , b , c ; clrscr ( ) ; printf ( "Enter three number: \n " ) ; scanf ( "%d%d%d" ,& a ,& b ,& c ) ; if ( ( a > b && a < c ) || ( a > c && a < b ) ) printf ( "%d is middle number" , a ) ; else if ( ( b > a && b < c ) || ( b > c && b < a ) ) printf ( "%d is middle number" , b ) ; else printf ( "%d is middle number" , c ) ; getch ( ) ; } Output:
Comments
Post a Comment