// WAP to enter three sides of triangle and find area. #include<stdio.h> #include<conio.h> #include<math.h> void main() { float a,b,c,s,a=0; clrscr(); printf("Enter three length of triangle:\n"); scanf("%f%f%f",&a,&b,&c); s=(a+b+c)/2; a=sqrt(s*(s-a)*(s-b)*(s-c)); printf("Area of triangle is %f",a); 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