Computer Applications

Write the Java expressions for the following: z = x³ + y³ + (xy / 3)

Java Operators

ICSE 2006

99 Likes

Answer


z = Math.pow(x, 3) + Math.pow(y, 3) + x * y / 3

Answered By

41 Likes


Related Questions