Computer Applications

Write the Java expressions for the following: {[(3x + 5y) / (5x + 3y)] - (8xy / 2yx)}^(3/2)

Java Operators

29 Likes

Answer


Math.pow(((3 * x + 5 * y) / (5 * x + 3 * y)) - ((8 * x * y) / (2 * y * x)), 3.0 / 2)

Answered By

20 Likes


Related Questions