Computer Science, asked by adhiranand26, 3 months ago

Write a program to find the area of a triangle. (formula area =1/2 bh)​

Answers

Answered by Sandradutta05
2

# where b and h are height of sides of the triangle

b=int(input('breadth of triangle'))

h=int(input('height of the triangle'))

Area == 1/2*b*h

print(Area)

Hope it is helpful : )

Thanks

Similar questions