I'm trying to read a text file into an array of structure. I haven't figured out a way to input it into an array of structure yet but the problem with my code is that the output keeps looping. I'm new to C++ as this is the first programming course I am taking.
This is the text file of records I've put in separated by "tab".
1 Clark Kent 012-1449326 221, Jalan Pudu, Kuala Lumpur [email protected]
2 Bruce Wayne 013-9817470 65, Jalan Jejaka, Kuala Lumpur [email protected]
3 Peter Parker 017-6912495 26, Jalan Rajabot, Kuala Lumpur [email protected]
4 Yeoman Prince 014-1374040 22, Jalan 1/109e, Kuala Lumpur [email protected]
5 Tony Stark 016-7473151 21, Jalan Pandan, Kuala Lumpur [email protected]
6 Selina Kyle 012-4040928 Wisma Cosway, Kuala Lumpur [email protected]
7 Steve Rogers 018-9285217 Desa Pandan, Kuala Lumpur [email protected]
8 Alan Scott 019-5569400 2, Jalan U1/17, Shah Alam [email protected]
9 Britt Reid 011-7876738 43, Jalan SS2/23, Petaling Jaya [email protected]
10 Darcy Walker 011-4042788 Blok B, Setapak, Kuala Lumpur [email protected]
11 Reed Richards 019-2299339 Menara U, Bangsar, Kuala Lumpur [email protected]
12 Barbara Gordon 017-2297980 The Boulevard, Kuala Lumpur [email protected]
13 Don Diego Vega 012-4142987 10, Jalan Wangsa, Kuala Lumpur [email protected]
14 Billy Batson 013-9200151 122, Jalan Jejaka, Kuala Lumpur [email protected]
15 Barry Allen 017-7928822 Wisma Laxton, Kuala Lumpur [email protected]
16 Stanley Beamish 014-9177437 203, Sunwaymas, Batu Caves [email protected]
17 Dick Grayson 017-4023800 Pekeliling Bus, Kuala Lumpur [email protected]
18 James Howlett 012-7816910 Sri Hartamas, Kuala Lumpur [email protected]
19 Hal Jordan 013-3439897 302, Jalan Ampang, Kuala Lumpur [email protected]
20 Scott Summers 012-9057100 Menara Summit, Subang Jaya [email protected]
This is my struct:
struct Employee {
int staffId;
char fullName[30];
char phoneNum[15];
char address[40];
char email[30];
};
The function call of read:
int main(void) {
int choice;
int value = 0;
Employee data;
menu();
cin >> choice;
do {
if (choice == 1) {
read();
}
else if (choice == 2) {
add(value, &data);
}
else if (choice == 3) {
list(value, &data);
}
else if (choice == 4) {
search();
}
else if (choice == 5) {
update();
}
else if (choice == 6) {
deletes();
}
else if (choice == 7) {
exit();
}
else {
cout << "\n **Invalid choice option. Please enter from numbers 1 to 7 : ";
cin >> choice;
}
} while (choice != 1 || choice != 2 || choice != 3 || choice != 4 || choice != 5 || choice != 6 || choice != 7);
return 0;
}
This is my code to read the file:
void process(string* line) {
cout << "line read: " << *line << endl;
}
void read()
{
string line;
ifstream in("list.txt");
if (!in.is_open()) {
cerr << "File can't be opened! " << endl;
}
while(getline(in,line)) {
process(&line);
}
if (in.bad()) {
cerr << "File can't be read! " << endl;
}
in.close();
return;
}
This is my output:
line read: 1 Clark Kent 012-1449326 221, Jalan Pudu, Kuala Lumpur [email protected]
line read: 2 Bruce Wayne 013-9817470 65, Jalan Jejaka, Kuala Lumpur [email protected]
line read: 3 Peter Parker 017-6912495 26, Jalan Rajabot, Kuala Lumpur [email protected]
line read: 4 Yeoman Prince 014-1374040 22, Jalan 1/109e, Kuala Lumpur [email protected]
line read: 5 Tony Stark 016-7473151 21, Jalan Pandan, Kuala Lumpur [email protected]
line read: 6 Selina Kyle 012-4040928 Wisma Cosway, Kuala Lumpur [email protected]
line read: 7 Steve Rogers 018-9285217 Desa Pandan, Kuala Lumpur [email protected]
line read: 8 Alan Scott 019-5569400 2, Jalan U1/17, Shah Alam [email protected]
line read: 9 Britt Reid 011-7876738 43, Jalan SS2/23, Petaling Jaya [email protected]
line read: 10 Darcy Walker 011-4042788 Blok B, Setapak, Kuala Lumpur [email protected]
line read: 11 Reed Richards 019-2299339 Menara U, Bangsar, Kuala Lumpur [email protected]
line read: 12 Barbara Gordon 017-2297980 The Boulevard, Kuala Lumpur [email protected]
line read: 13 Don Diego Vega 012-4142987 10, Jalan Wangsa, Kuala Lumpur [email protected]
line read: 14 Billy Batson 013-9200151 122, Jalan Jejaka, Kuala Lumpur [email protected]
line read: 15 Barry Allen 017-7928822 Wisma Laxton, Kuala Lumpur [email protected]
line read: 16 Stanley Beamish 014-9177437 203, Sunwaymas, Batu Caves [email protected]
line read: 17 Dick Grayson 017-4023800 Pekeliling Bus, Kuala Lumpur [email protected]
line read: 18 James Howlett 012-7816910 Sri Hartamas, Kuala Lumpur [email protected]
line read: 19 Hal Jordan 013-3439897 302, Jalan Ampang, Kuala Lumpur [email protected]
line read: 20 Scott Summers 012-9057100 Menara Summit, Subang Jaya [email protected]
line read: 1 Clark Kent 012-1449326 221, Jalan Pudu, Kuala Lumpur [email protected]
line read: 2 Bruce Wayne 013-9817470 65, Jalan Jejaka, Kuala Lumpur [email protected]
line read: 3 Peter Parker 017-6912495 26, Jalan Rajabot, Kuala Lumpur [email protected]
line read: 4 Yeoman Prince 014-1374040 22, Jalan 1/109e, Kuala Lumpur [email protected]
line read: 5 Tony Stark 016-7473151 21, Jalan Pandan, Kuala Lumpur [email protected]
Any ways to suggest it stop looping? I'm trying to refrain from putting a set size like 20 because in another part of the program, I'm supposed to add more employee records. So, my question is:
- How do you stop it from infinitely looping?
- How to input the lines read into an array of structure?
Thank you in advance.
The problem is that you never ask the user for a new menu choice, so your program gets stuck in the first choice and loops indefintely.
Your loop should look like this with
cin >> choice;
inside thedo
loop.With this change you'll also need to rewrite your error handling logic as well, but I'll leave that to you.
And as Bob__ says in the comments below the logic of your loop condition is wrong
choice != 1 || choice != 2 || choice != 3 || choice != 4 || choice != 5 || choice != 6 || choice != 7
is always true, so your loop will never terminate.In any case there are several errors in your overall program logic, and those are what you should fix before getting into the functionallity of individual menu items.