Computer Applications

Write the Java expression to find the sum of cube root of x and the absolute value of y.

Java Math Lib Methods

3 Likes

Answer

Math.cbrt(x) + Math.abs(y)

Answered By

2 Likes


Related Questions