Computer Science, asked by sharanya1018, 6 months ago

Write java expression for the following: T= Sqrt {a² + b + c }​

Answers

Answered by heyParam
1

Answer:

T = Math.sqrt( a*a + b + c)

Explanation:

The java.lang.Math.sqrt () is used to return the square root of a number. This method returns the square root of value.

Similar questions