Write a program to find the area of a triangle. (formula area =1/2 bh)
Answers
Answered by
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
Math,
1 month ago
History,
1 month ago
Physics,
3 months ago
Computer Science,
3 months ago
Biology,
9 months ago