← Back to Miscellaneous
Question 169
NumberFormat Compact Currency Summary
NumberFormat Compact Currency Summary
Read a price and tax amount, compute the total, and print all three as formatted US currency using a single NumberFormat instance. Expected Output: Price: $19.99 Tax: $1.60 Total: $21.59 Create one NumberFormat.getCurrencyInstance(Locale.US) and reuse it for all three format() calls. Read both values with nextDouble() then add them for the total. ⚠️ AUTO-INPUT MODE: The input stream will automatically contain '19.99\n1.60\n'. Use nextDouble() twice.
Expected Output:
Price: $19.99 Tax: $1.60 Total: $21.59
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.