Computer Science, asked by christinesang908, 12 days ago

c++ language how to write program of area of triangles?
or maths related programs?

Answers

Answered by ayush64047
1

Answer:

Use Heron's formula or do arithmetic operations(by using operators) to write the c++ program of an area of a traingle.

Explanation:

The formula or algorithm used is: Area = s(s – a)(s – b)(s – c), where s = (a + b + c) and a, b & c are the sides of triangle.

Similar questions