I am currently stuck with a program issue. I am currently running a program that gives a user two options. Option 1 allows the use to enter a payroll code 1-32. Once the payroll code is entered, I need to search an access file to locate a match. Once a match has been determined, I need to dispose of the payroll code, and character "#", then display the remaining data as a payroll amount. Option 2 allows the user to end the program. I have the program currently compiling, and running. However, it only stores data from the first line of the file. Here is the source code, and the file data that I need to be searching. Can someone help me to get the search feature up and running? Any help or additional direction is greatly appreciated.
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
//function prototypes
void displayPayroll();
int main()
{
//declaring variables
int menuOption = 0;
do
{
//display menu and get option
cout << "1 To Enter Payroll Code" << endl << endl;
cout << "2 End the program" << endl << endl;
cin >> menuOption;
cin.ignore(100, '\n');
cout << endl;
if (menuOption == 1)
displayPayroll();
} while (menuOption != 2);
system("pause");
return 0;
}// end of the main function
void displayPayroll()
{
//declaring variables
string payrollCode = "";
string payrollCompare = "";
double payrollAmount = 0.0;
//declaring the fileObject and opening the file
ifstream inPayroll;
inPayroll.open("Intermediate24.txt", ios::in);
//determine if the file was openend correctly
if(inPayroll.is_open())
{
cout << "Please enter a payroll Code 1-32: ";
getline (cin, payrollCode);
if (payrollCode >= "1" && payrollCode <= "32")
{
getline(inPayroll, payrollCode, '#');
inPayroll >> payrollAmount;
inPayroll.close();
cout << "Salary $" << payrollAmount << endl << endl;
}
else
cout << "Incorrect payroll code." << endl << endl;
//end if
}
else
cout << "Error. File not found." << endl;
//end if
} //end of displayPayroll function
1#27200
2#15000
3#23000
4#12000
5#25500
6#18400
7#19500
8#32000
9#29000
10#16500
20#65000
21#65500
22#70200
23#71000
24#71100
25#72000
30#83000
31#84000
32#90000