xxxxxxxxxx
Area of trapezium (UK) or trapezoid (US) = (sum of parallel sides) / 2 * height
xxxxxxxxxx
height = float(input("Height of trapezoid: "))
base_1 = float(input('Base one value: '))
base_2 = float(input('Base two value: '))
area = ((base_1 + base_2) / 2) * height
print("Area is:", area)
xxxxxxxxxx
/*
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;
}