Write the Java expression for the following:
`root3 (a) + b^2 - root3c`
Math.cbrt(a) + b * b - Math.cbrt(c)