pls i only need help with program 2


Pls i only need help with program 2.

#include
#include

using namespace std;

int main()
{
int FilingStatus;
cout << "Lifetime Learning Credits Worksheet Creation Program" << endl;
cout << endl << "1 - Single" << endl;
cout << "2 - Married, Filing Jointly" << endl;
cout << "3 - Head of Household" << endl;
cout << "4 - Qualifying Widow(er)" << endl;
cout << "5 - Married, Filing Separately" << endl;
cout << "Enter your filing status from above (1-5): ";
cin >> FilingStatus;
if (FilingStatus == 5)
{
cout << endl << "The Lifetime Learning Credit is not available if you file as \"Married, Filing Separately\"" << endl;
system("PAUSE");
return 1;
}
return 0;
}

https://wikisend.com/download/366768/C++ProgAssn3.pdf

Post
one test case for program #2 here. Your test case must include a rationale for why the case was selected, the test inputs, and the expected outputs. Note that the test case should reflect one logical alternative from the processing.

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: pls i only need help with program 2
Reference No:- TGS0160234

Expected delivery within 24 Hours