Computer Science, asked by Mdamaan2401, 1 month ago

Write the JAVA expressions for the following
X3+y3-xy/3

Answers

Answered by VISHALKUMARV22
1

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

Similar questions