Computer Science, asked by sakshay1329, 11 months ago

Write a program in java to find the value for the expression a2+b2/ a minus b

Answers

Answered by atheesh
1

Answer:

((Math.pow(a,2) + Math.pow(b,2)) / a + b;

Explanation:

Math.pow is java's inbuilt function in the package java.lang the above is only the single line snippet

Similar questions