CJCoding With Joseph

Square Root of Input

Read a number from standard input using sc.nextDouble() and print its square root rounded to two decimals. For example, if the input is 16, print:

4.00

Use Math.sqrt(...) and printf with %.2f.

Expected Output:

4.00
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
16\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.