Computer Science, asked by umeshmehar682, 5 hours ago

Write the corresponding expression for the z = x3 + y3 + xy/z​

Answers

Answered by Sanskar260
0

Answer:

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

Similar questions