Computer Science, asked by rolibhardwaj7, 10 months ago

Write a jove espression for the following
ax5 + bx3 +c​

Answers

Answered by DIAMONDQUEEN
2

Heyaa friend ! ☺

>> Here's your answer :

  • The java expression for the following is :

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

__________________________

Thank you ! ♠

Doubts are most welcome :)

Answered by GANTASHINEY
0

Answer:

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

Similar questions