NEED HELP WITH FINISHING THIS PROJECT, I GOT STUCK AND DONT KNOW WHERE TO GO NEXT I NEED TO BE ABLE TO ADD EMPLOYESS TO A SEQUENTIAL FILE READ THE SEQUENTIAL FILE, BE ABLE TO ASK FOR THE HRS WORKED FOR THE PAY PERIOD AND CALCULATE THE PAY AND DISPLAY THE INFO , ALSO THE PROGRAM NEEDS TO READ THE SEQUENTIAL FILE AND DISPLAY THE INFORMATION TO THE SCREEN IN A REPORT FORMAT, NEED AT LEAST 3 FUNCTIONS. I WILL HONESTLY ADMITT IM IN STRUGGLING WITH THIS ANY HELP WILL GREATLY APPRECIATED.
CODE
#INCLUDE <IOSTREAM>
# INCLUDE <IOMANIP>
#INCLUDE <STRING>
#INCLUDE <FSTREAM>
USING NAMESPACE STD;
//CONST INT maxNumberOfEmployee = 26;
//void getEmployeeData (ifstream& infile, employeeName employeeList[], int numberOfEmployee);
//voif printpayReports (ofstream& outfile, employeename employeeList[], int numberOfEmployee, double payRate);
int main()
{
string fName;
stringlName;
string address;
int noOfDependents'
char mstatus;
double deduction;
int count;
count = 0,
do
{
cout << "enter the First Name: ";
cin >> fName;
cout << endl;
cout << "enter the last name: ";
cin >> lName;
cout << endl;
cout << "enter the address: ";
cin >> address;
cout << endl;
cout << "enter M(arried) or S(ingle): ";
cin >> mstatus;
cout << endl;
cout << "How much you want us to deduct for 401k plan ?";
cin >> deduction;
cout << endl;
count = count + 1;
}
while (count <=26);
where do i go from here some one help me please.