Computer Science, asked by ishraq78600, 5 months ago

write java expression for: sin 3x + 6xy²​

Answers

Answered by ProdigyBrain
1

Answer:

double d = Math.sin(3*x)+6*x*y;

Hope this helps you

If so please mark it as brainliest

Answered by Oreki
1

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

   \sin 3x + 6xy^2

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

   \texttt{Math.sin(3 * x) + 6 * x * y * y;}

Similar questions