Showing posts with label Area of Trapezium Program. Show all posts
Showing posts with label Area of Trapezium Program. Show all posts

Jan 30, 2013

Area of Trapezium Program

/*Area of Trapezium Program*/

#include"stdio.h"
#include"conio.h"
void main()
{
clrscr();
float Length,Width,Height,Trapezium_Area;
printf("Enter The Value of Length,Width,&Height");
scanf("%f%f%f",&Length,&Width,&Height);
Trapezium_Area=0.5(Length+Width)*Height;
printf("The Area of Trapezium is=%.2f",Trapezium_Area);
getch();
}

Popular Posts