Computer Science, asked by thangu2223, 5 months ago


Convert the following mathematical expression into C equivalent (5)

area= s(s-a)(s-b)(s-c)
x = -b + b2 -4ac

Answers

Answered by priya7668
2

Answer:

area = (s*(s-a)*(s-b)*(s-c));

x = (-b+Math.pow(b,2)-4*a*c);

HOPE IT WILL HELP YOU!

Similar questions