CJCoding With Joseph
15per day

NumberFormat Locale Comparison

Use NumberFormat to read a decimal and print it as currency in two different locales: US and Germany.

Expected Output:
US: $1,234.50
DE: 1.234,50 €

Create two NumberFormat instances using Locale.US and Locale.GERMANY. Notice that US uses commas as thousands separators while Germany uses periods - the same value looks different in each locale.

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

Expected Output:

US: $1,234.50
DE: 1.234,50 €
Topics:
Miscellaneous
📥 Auto-Input:
1234.5\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.