Write a program in java to find the value for the expression a2+b2/ a minus b
Answers
Answered by
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