Computer Applications

Write the Java expressions for the following: ∛(x² + 5y³)

Java Math Lib Methods

8 Likes

Answer


Math.cbrt(x * x + 5 * y * y * y)

Answered By

5 Likes


Related Questions