CJCoding With Joseph
15per day

Format Currency with NumberFormat

Use Java's NumberFormat class to read a decimal and print it as Canadian currency.

Expected Output:
Amount: $1,234.50

Create a NumberFormat using NumberFormat.getCurrencyInstance(Locale.CANADA), then call nf.format(amount) to produce the formatted string. The formatter handles the $ symbol, comma grouping, and 2 decimal places automatically.

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

Expected Output:

Amount: $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.