Question: Write an assignment statement for the following mathematical equation: y = (2/7)x + (x/9) + 23x Keep x as an integer. Use an expression that
Write an assignment statement for the following mathematical equation: y = (2/7)x + (x/9) + 23x Keep x as an integer. Use an expression that matches the equation's right side as closely as possible. If the input is -1, the output is -23.396825396825395. Hints: Don't rearrange the equation or try to simplify it. If both operands of division (or other operators) are integers, integer division is performed, which rounds down; so for example 1/2 is 0. So make at least one operand a floating-point type, as in 2.0/7, or 2.0/7.0, to cause floating-point division.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
