Write java expression for the following: T= Sqrt {a² + b + c }
Answers
Answered by
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