Advertisements
Advertisements
Question
Write the Java expression for the following:
z = x3 + y3 − `y/z^3`
One Line Answer
Solution
z = Math.pow(x, 3) + Math.pow(y, 3) - y / Math.pow(z, 3)
shaalaa.com
Is there an error in this question or solution?
Chapter 1.04: Operators in Java - EXERCISES [Page 43]