write a program to input the base and height of a triangle and display it's area (hint:Area of triangle =0.5*base *height) answer me soon frnds
Answers
Answered by
1
b = int(input("Input the base : "))
h = int(input("Input the height : "))
area = b*h/2
print("area = ", area)
- pls mark me as brainliest answer
Similar questions