Advertisements
Advertisements
Question
Write the Java expression for the following:
`sqrt(a + b^2 + c^3)/3`
One Line Answer
Solution
Math.sqrt(a + b * b + c * c * c) / 3
shaalaa.com
Is there an error in this question or solution?
Chapter 1.04: Operators in Java - EXERCISES [Page 43]