Computer Science, asked by Anonymous, 1 month ago

Write a Java expression for
√2as + u²

I NEED ONLY CORRECT ANSWER​

Answers

Answered by Anonymous
2

\huge\mathfrak{\underline{\underline{\purple {Answer}}}}

 \tt √((2as) + uu))


Anonymous: wrong Answer
Answered by atrs7391
4

Answer:

I can't understand your equation properly.

If you mean √2as +  u² and the  u² is seperated then:

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

and if you mean √2as + u² where u² is together which means √(2as + u²) then:

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

Hope you got your answer.

Similar questions