CJCoding With Joseph

Square Root Method

Complete the static method SquareRoot so it returns the square root of its parameter as a double. Use Math.Sqrt. The tester passes perfect squares. Do NOT write a Main method.

For SquareRoot(16) the program prints exactly:
4

Expected Output:

4
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.