Computer Science, asked by mayraazbano, 1 year ago

7.
Write the equivalent C++ expression for the following Alegbraic
expression:
(1) 2AB + 2BC + 2CA
2A
(ii) b2 - 4ac
2a

Answers

Answered by A1231
2

1) double sum=((2*A*B)+(2*B*C)+(2*C*A))/(2*A);

2) double op=(X*X*4)/3;

Similar questions