Write the Java Expression for √ ( 2as + n^2 )
Answers
Answered by
1
Answer:
Math.sqrt( 2*a*s + n*n)
OR
Math.sqrt( 2*a*s + Math.pow(n,2))
Both will work
Similar questions