Answers for "formula to find the area of a trapezium in c"

C
3

area of trapezium formula

Area of trapezium (UK) or trapezoid (US) =  (sum of parallel sides) / 2 * height
Posted by: Guest on May-22-2021
0

formula to find the area of a trapezium in c

/* 
     formula is : (base1 + base2) / 2 * height
 */
#include <stdio.h>
int main()
{
     double base1, base2, height, area;
     scanf("%lf %lf %lf", &base1, &base2, &height);

     area = (base1 + base2) / 2 * height; // applying formula
     printf("Area: %0.3lf\n", area);
     return 0;
}
Posted by: Guest on August-02-2021

Code answers related to "formula to find the area of a trapezium in c"

Code answers related to "C"

Browse Popular Code Answers by Language