Computer Science, asked by mansisharma5141, 5 months ago

Write the java expression for the following xy3 + xy

Answers

Answered by Oreki
3

\textsf{\large \textbf{Given Expression}}

   xy^3 + xy \text{\:\: or,}\\xy(y^2 + 1)

\textsf{\large \textbf{Java Expression}}

   \texttt{x * y * (y * y + 1);}

Similar questions