Computer Science, asked by Prapti456, 1 year ago

Write the equivalent c++ expression for the following expression:
(1) 2AB+2BC+2CA\2A

(2) 4\3 X square

(3) b square- 4ac\2a

Answers

Answered by digi18
5
1) (2*A*B) + (2*B*C) + (2*C*A)/2*A

2) 4/3 * x * x

3) (b*b - 4 * a * c)/2*a

Thanks
Similar questions