KnowledgeBoat Logo
|

Computer Applications

Write the Java expression for the following:

ab+cd3\sqrt[3]{ab + cd}

Java Operators

134 Likes

Answer


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

Answered By

71 Likes


Related Questions