Find the area of the largest triangle rounded upto one decimal place
1
Expert's answer
2021-11-16T18:38:24-0500
base=int(input("Enter the base of the triangle: "))
heigth=int(input("Enter the heigth of the triangle: "))
area=1/2*base*heigth
print("Area of the triangle is: ", area)
Comments
Leave a comment