PYTHON : - Area Of Triangle


#Area of triangle
a = float(input("Enter side 1 : - "))
b = float(input("Enter side 2 : - "))
c = float(input("Enter side 3 : - "))

#calculating the semiperimeter

x = (a + b + c) / 2
# calculate the area

area = (x*(x-a)*(x-b)*(x-c)) ** 0.5
print("The area of the triangle is ", area )

OUTPUT :- 


For Other Programs Visit The WebSite:-   https://www.techapurba.com/

Follow Me On Social Media :-

For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/

Post a Comment

0 Comments