Computer Science, asked by ishita99130, 7 months ago

write the following as java expression. If you know the answer then tell lest your answer will be reported​

Attachments:

Answers

Answered by Oreki
1

Answer:

Math.cbrt(Math.pow(x, 2) + 5 * Math.pow(y, 3))

Answered by anindyaadhikari13
1

\star\:\:\:\sf\large\underline\blue{Question:-}

  • Write down the java expression for the following.

\star\:\:\:\sf\large\underline\blue{Answer:-}

Given expression,

 \sf \sqrt[3]{ {x}^{2}  + 5 {y}^{3} }

The above expression can be written in Java as,

Math.cbrt(Math.pow(x,2)+5*Math.pow(y,3));

Similar questions