write the corresponding expression for. 1) z=x cube + y cube +xy/ z
Answers
Answered by
2
Answer:
In Java the following expression will be written as:
z = Math.pow(x, 3) + Math.pow(y, 3) + x*y/z
Similar questions