Question: How would you code this math formula to a C++ code: Z = 9.8 X -5 Z = 9.8 x X^-5; Z = 9.8 x
How would you code this math formula to a C++ code:
Z = 9.8 X-5
Z = 9.8 x X^-5;
Z = 9.8 x pow(X , -5);
Z = (9.8) (pow(X , -5));
Z = 9.8 * pow(X , -5);
Z = 9.8 | X^-5;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
