Computer Science, asked by shalinlsingh, 11 months ago

Write the java expression for ;
(a+b)^2 + b
(a+b) whole square+ b

Answers

Answered by avinashmurmu99311
2

Explanation:

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

OR

(a+b)*(a+b)+b;

Answered by arnavchatterjee12jan
0

Answer:

Math.pow(a,2)+b

Similar questions