KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

The cube root of x3+y3+z3The \space cube \space root \space of \space x^3 + y^3 + z^3

Java Math Lib Methods

2 Likes

Answer


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

Answered By

1 Like


Related Questions