Computer Applications

Write the Java expressions for the following: ∛(ab + cd)

Java Operators

134 Likes

Answer


Math.cbrt(a * b + c * d)

Answered By

71 Likes


Related Questions