7.
Write the equivalent C++ expression for the following Alegbraic
expression:
(1) 2AB + 2BC + 2CA
2A
(ii) b2 - 4ac
2a
Answers
Answered by
2
1) double sum=((2*A*B)+(2*B*C)+(2*C*A))/(2*A);
2) double op=(X*X*4)/3;
Similar questions