I have a couple of syntax errors that I cannot quite figure out. This program is to equate one's personal taxes. A filing status and taxable income is entered. I have already coded my single filing status ( status == 0) I have yet to do the remaming 3. One of my return 0; is flagging a couple of erros. Is this because I have yet to input the other 3 codes or is there a simple mistake somewhere? thanks
#include <iostream>
using namespace std;
int main()
{
//prompt the user to enter filling status
cout << "Enter the filing status\n"
<< "(0-single filer, 1-married jointly,\n"
<< "2-married seperatly, 3-head of household): ";
int status;
cin >> status;
// Prompt the user to enter taxable income
cout << "Enter the taxable income: ";
double income;
cin >> income;