write an algorithm,flowchart,and psuedocode to get the area of triangle
Answers
Answered by
4
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
Explanation:
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.
Similar questions
Math,
4 months ago
Math,
4 months ago
Social Sciences,
8 months ago
Chemistry,
1 year ago
Math,
1 year ago