Computer Science, asked by baasha1977, 4 months ago

write the java expression for the following :xy3+|xy|​

Answers

Answered by Oreki
0

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

   xy^3 + |xy|

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

   \texttt{x * y * y * y + Math.abs(x * y);}

Similar questions