Write the Java expression for the following:
`3/8sqrt((b^2 + c^3))`
(3 / 8) * (Math.sqrt(b * b + c * c * c))