Computer Science, asked by aryandachepally, 10 months ago

∛(x+y)² in java expression form

Answers

Answered by rashiagarwal99
0

Answer:

3Δ√(x+y)^2

Explanation:

I hope my answer is correct.

Answered by Oreki
0

\textsf{\large Given Expression}

    \sqrt[3]{(x + y)^{2}}

\textsf{\large Java Expression}

    \texttt{Math.cbrt(Math.pow(x + y, 2));}

Similar questions