Computer Applications

Write the Java expressions for the following: The cube root of x³ + y³ + z³

Java Math Lib Methods

2 Likes

Answer


Math.cbrt(x*x*x + y*y*y + z*z*z);

Answered By

1 Like


Related Questions