CJCoding With Joseph
15per day

Round with DecimalFormat 2 Places

Use Java's DecimalFormat class to read a decimal and round it to exactly 2 decimal places.

Expected Output:
Rounded: 3.46

Create a DecimalFormat with the pattern '0.00'. The '0' means always show a digit even if it is zero. The formatter rounds the value and returns a formatted String.

⚠️ AUTO-INPUT MODE: The input stream will automatically contain '3.456\n'. Use Scanner's nextDouble() to read it - no keyboard input is needed.

Expected Output:

Rounded: 3.46
Topics:
Miscellaneous
📥 Auto-Input:
3.456\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.