Advertisements
Advertisements
Question
Write the Java expression for the following:
`sqrt(mm) + root3 ((m + n))`
Answer in Brief
Solution
Math.sqrt(m * n) + Math.cbrt(m + n)
shaalaa.com
Is there an error in this question or solution?
Write the Java expression for the following:
`sqrt(mm) + root3 ((m + n))`
Math.sqrt(m * n) + Math.cbrt(m + n)