CJCoding With Joseph
15per day

DecimalFormat Negative Currency Style

Format a negative decimal as accounting-style currency where negatives appear in parentheses instead of with a minus sign.

Expected Output:
Amount: ($42.30)

Use DecimalFormatSymbols to set the currency symbol to '$', then create a DecimalFormat with a two-part positive;negative pattern. The \u00A4 character is the currency symbol placeholder in the pattern.

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

Expected Output:

Amount: ($42.30)
Topics:
Miscellaneous
📥 Auto-Input:
-42.3\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.