Computer Science, asked by arnavchatterjee12jan, 9 months ago

Write the Java Expression for the following:- √2as+u^2

Answers

Answered by Vyomsingh
11

Answer:

Math.sqrt(2)*a*s+Math.pow(u,2)

Answered by Oreki
4

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

    \sqrt{2} \: as + u^2

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

   \texttt{Math.sqrt(2) * a * s + u * u;}

Similar questions