Computer Applications

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

Java Operators

132 Likes

Answer


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

Answered By

69 Likes


Related Questions