I'm trying to read in a number which is how many lines of input I have (each line is three strings), but when I press enter to input the second line (for example:
3
a b c
d e f
)
usingnamespace std;
int main(){
int inputs;
cin>> inputs;
vector <string> names;
vector <string> status;
vector <string> travel;
char *travels[100];
for (int i=0;i< inputs;i++){
//name, status, itinenary
string a, b, c;
cin>>a>>b>>c;
names.push_back(a);
status.push_back(b);
travel.push_back(c);
//get rid of the dashes and put it in an array
travels[i] = strtok(travels[i], "-");
cout<<"got here"<<endl; //this line isn't printed
}
cout<< "Program finished"; //this line is also not output
return 0;
}
I wish I could make the underscore/cursor blink like on the screen, but like your program it is waiting for input, but you have no idea what to type in.
Sometimes mixing C and C++ code does not work well. I would like to tell you that you are missing the <string.h> header file, but you did not include your header files, so I do not know.
In the short time I did spend with the program I did come up with this: