← Back to Miscellaneous
Question 162
NumberFormat Integer Grouping
NumberFormat Integer Grouping
Use NumberFormat.getIntegerInstance() to read a large integer and print it with comma grouping separators. Expected Output: Grouped: 1,000,000 getIntegerInstance(Locale.US) creates a formatter that inserts commas every 3 digits from the right. Read the number with nextLong() or nextInt(), then pass it to nf.format(). ⚠️ AUTO-INPUT MODE: The input stream will automatically contain '1000000\n'. Use Scanner's nextLong() or nextInt() to read it.
Expected Output:
Grouped: 1,000,000
Topics:
Miscellaneous
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.