Write an algorithm and c program to find area of triangle
Answers
Answered by
0
Answer:
I don't know about that.
but in mathematics there are 2 methods..
1) 1/2 × B× H
2) √S (s-a)(s-b)(s-c)
hope it's helpful
Answered by
0
Answer:
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.
I HOPE IT'S HELPFUL PLS MARK ME AS BRAINLIEST
Similar questions