Advertisements
Advertisements
Question
Write the Java expression for the following:
`3/8sqrt((b^2 + c^3))`
One Line Answer
Solution
(3 / 8) * (Math.sqrt(b * b + c * c * c))
shaalaa.com
Is there an error in this question or solution?
Write the Java expression for the following:
`3/8sqrt((b^2 + c^3))`
(3 / 8) * (Math.sqrt(b * b + c * c * c))