Computer Applications

Write the Java expressions for the following: (a^x + b^y) / (∛x + ∛y)

Java Operators

27 Likes

Answer


(Math.pow(a, x) + Math.pow(b, y)) / (Math.cbrt(x) + Math.cbrt(y)) 

Answered By

16 Likes


Related Questions