Write an algorithm to find out the area of triangle when 3 sides are known
Answers
Answered by
0
1. Start.
2. Input a,b,c.
3. Calculate s = (a + b + c ) / 2.
4. Calculate area = sqrt( s*(s-a)*(s-b)*(s-c))
5. print "Area of Triangle=", area.
6. End.
PLZ MARK ME AS BRAINLIEST!!!!!!!!!!!!!
Answered by
0
Answer:
using herons formula, you can find out the area of triangle when three sides are given
pls check Google for formula as it is difficult to type
Similar questions