Computer Science, asked by zepetoishita, 5 hours ago

Write the following expression in Java .a^2 - b^2 - c^2​

Answers

Answered by atrs7391
2

Math.pow(a, 2) - Math.pow(b, 2) - Math.pow(c, 2)

Similar questions