Computer Science, asked by hiya2108, 7 months ago

Java expression of (a^3 +b^3)/a+b +7​

Answers

Answered by Haruhi22
1

Answer:

((int)Math.pow(a,3) + (int)Math.pow(b,3))/(a) +b +7

Similar questions