Answers for "area trapezium"

1

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)
Posted by: Guest on January-22-2022
1

area of trapezium

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

Browse Popular Code Answers by Language