Write the java expression for ;
(a+b)^2 + b
(a+b) whole square+ b
Answers
Answered by
2
Explanation:
Math.pow(a+b,2)+b;
OR
(a+b)*(a+b)+b;
Answered by
0
Answer:
Math.pow(a,2)+b
Similar questions