a) Write a Java expression for the following :
ax5 + bx3 + c
Answers
Answered by
35
Ans. a * Math.pow(x, 5) + b * Math.pow(x, 3) + c
Answered by
11
a*Math.pow(x,5)+ b*Math.pow(x,3)+c
Hope it helps you.
Similar questions