Computer Science, asked by T4Talent, 1 year ago

a) Write a Java expression for the following :
ax5 + bx3 + c

Answers

Answered by tiara5
35

Ans. a * Math.pow(x, 5) + b * Math.pow(x, 3) + c
Answered by varsha58167
11

a*Math.pow(x,5)+ b*Math.pow(x,3)+c

Hope it helps you.

Similar questions