Computer Science, asked by namratariva4727, 19 days ago

Write an algorithm to find the area of a trapezium and convert it to flowchart

Answers

Answered by samarthkrv
0

Answer:

a = float(input("Enter the length of the first side:"))

b = float(input("Enter the length of the second side:"))

h = float(input("Enter the height:"))

area = ((a+b)/2) * h

print("The area is:" , area)

Explanation:

output -

Enter the length of the first side:6

Enter the length of the second side:8

Enter the height:9

The area is: 63.0

Similar questions