I believe my program is still going through the if statements after it is declared invalid. It should print invalid filling status or invalid exemption status on the same line w
You can't use commas inside numbers in C++. The comma is the comma operator.
So instead of 7,000 write 7000.
if(taxable_income>7,000) { x; }
Would never execute x;