Answers for "area of trapezium formula"

12

area of trapezium

Area of a trapezium (trapezoid) = (Base1 + Base2) / 2 * height
Posted by: Guest on September-17-2020
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
1

area of trapezium

1/2*h(a+b)
Posted by: Guest on February-11-2021

Code answers related to "area of trapezium formula"

Browse Popular Code Answers by Language