write flowchart or algorithm to find area of a tringle
Answers
Answered by
0
Answer:
Start.
Input a,b,c.
Calculate s = (a + b + c ) / 2.
Calculate area = sqrt( s*(s-a)*(s-b)*(s-c))
print "Area of Triangle=", area.
End.
Answered by
1
thanks for free points.............
Similar questions