CJCoding With Joseph
15per day

DecimalFormat Grouping and Two Decimals

Use DecimalFormat to read a large decimal and print it with comma grouping separators and exactly 2 decimal places.

Expected Output:
Formatted: 98,765.43

Use the pattern '#,##0.00': the comma triggers thousands grouping, '.00' enforces 2 decimal places. '#' shows digits only when non-zero; '0' always shows a digit.

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

Expected Output:

Formatted: 98,765.43
Topics:
Miscellaneous
📥 Auto-Input:
98765.432\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.