I'm relatively new to Java, and I have a line of code I'm struggling with:
System.out.println(String.format("%-14s%10.2f","Income",income));
I would like to add a $ and commas to the income, but whenever I try to add it in the line, I get errors or the $ shows up in the wrong spot.
So currently it prints:
Income 50000.00
but I would like it to print:
Income $50,000.00
If there is a way to add these additions while keeping 'Income' and the digits nicely spaced apart, that'd be preferred. :)