Computer Science, asked by vishalsinghc951, 6 months ago

Give java expression for ax⁵+bx³+c

Answers

Answered by ginogaming963
2

Answer:

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

Answered by Oreki
0

\textsf{\large Given Expression}

    ax^5 + bx^3+c

\textsf{\large Java Expression}

    \texttt{a * Math.pow(x, 5) + b * x  * x * x + c;}

Similar questions