Can someone please finish this off, i need the days to start going on
the day specified
#include <iostream.h>
int main()
{
int month;//asks for current month
int days;//asks for day of start
int numdays;//number of days in the month
int monthstarter=1; //starts day count
cout<<"Enter a month (1 - 12): ";
cin>>month;
cout<<"Enter a starting day (0 for Sunday, 1 for Monday...): ";
cin>>days;
if (month==1){
cout<<"\t\tJanuary"<<endl;
numdays=31;
}//end if
else if (month==2){
cout<<"\t\tFebuary"<<endl;
numdays=28;
}//end else if
else if (month==3){
cout<<"\t\tMarch"<<endl;
numdays=31;
}//end else if
else if (month==4){
cout<<"\t\tApril"<<endl;
numdays=30;
}//end else if
else if (month==5){
cout<<"\t\tMay"<<endl;
numdays=31;
}//end else if
else if (month==6){
cout<<"\t\tJune"<<endl;
numdays=30;
}//end else if
else if (month==7){
cout<<"\t\tJuly"<<endl;
numdays=31;
}//end else if
else if (month==8){
cout<<"\t\tAugust"<<endl;
numdays=31;
}//end else if
else if (month==9){
cout<<"\t\tSeptember"<<endl;
numdays=30;
}//end else if
else if (month==10){
cout<<"\t\tOctober"<<endl;
numdays=31;
}//end else if
else if (month==11){
cout<<"\t\tNovember"<<endl;
numdays=30;
}//end else if
else if (month==12){
cout<<"\t\tDecember"<<endl;
numdays=31;
}//end else if
cout<<"\tS M T W T F S"<<endl;
cout<<"----------------------------------"<<endl;
cout.setf(ios::right);
cout.width(2);
return 0;
}//end main body