Computer Science, asked by abcd123459, 3 months ago

what will be the Java expression of a^2 + ab - b^2​

Answers

Answered by ashukalmegh
2

Answer:

a*a+a*b-b*b

or

Math. pow(a,2) +a*b -Math. pow(b, 2)

Similar questions