area of trapezium
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)
area of trapezium
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)
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;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us