Write the following expression in Java .a^2 - b^2 - c^2
Answers
Answered by
2
Math.pow(a, 2) - Math.pow(b, 2) - Math.pow(c, 2)
Similar questions