Computer Science, asked by akash12345696, 3 months ago

write the Java expression for the following:m =(a²-b²)/ab​

Answers

Answered by apdmegha2005
10

Answer:

double x= (math.pow(a,2)-math .pow (b,2))/a*b;

hope it helps you

Answered by sagar258020
2

Java

Try It.

M = ( A*A - B*B ) / AB

Similar questions