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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!