Computer Applications

Write the Java expressions for the following: ∛(z² - π)

Java Math Lib Methods

27 Likes

Answer


Math.cbrt(z*z - Math.PI)

Answered By

20 Likes


Related Questions