Given the algebraic equation y = ax 3 + 7, which of the following, if any, are correct C++ statements for this equation?
a) y = a * x * x * x + 7;
b) y = a * x * x * (x + 7 );
c) y = (a * x) * x *(x + );
d) y = (a * x) * x * x + 7;
e) y = a * (x * x * x) + 7;
f) y = a * x * (x * x + 7 );
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.