Computer Science, asked by debadritamukherjee20, 3 months ago

Write the Java expression of x3 + xyz + y3​

Answers

Answered by himanshu2006vps
2

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

Similar questions