Computer Science, asked by nirmaldarrick734, 7 months ago

Write the Java Expression for √ ( 2as + n^2 )

Answers

Answered by IamGenesis
1

Answer:

Math.sqrt( 2*a*s + n*n)

OR

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

Both will work

Similar questions