Hey guys I'm writing part of a code for a project and I'm stuck on one thing. If this is something good coders figure out on their own at some point (as I'd like to become a good one, week five with c++; so far so good...) and its a trial, say the word and I'll screw, but I've been at debugging for about a half hour and don't understand why my 'if' statement is looping.
The input should look like this:
p 11:34 12:45
Where p indicates if you're done (it'll be 's' if you want it to be out, represented here by 'end').
const int LIST_SPACE = 1000; // this is outside of the main function
string c; // and is 1000 because of a parameter set by the teacher
string end = "s";
string start = "p";
int temp_start_hour;
int temp_start_min;
int temp_end_hour;
int temp_end_min;
string colon = ":";
int begin_hours[LIST_SPACE];
int begin_min[LIST_SPACE];
int end_hours[LIST_SPACE];
int end_min[LIST_SPACE];
int i = 0;
do {
cin >> c; //where c is a string
if(c != start && c != end)
{
cout << "ERROR IN INPUT";
return 1;
}
if(c != end)
{
cin >> temp_start_hour >> colon >> temp_start_min;
cin >> temp_end_hour >> colon >> temp_end_min;
begin_hours[i] = temp_start_hour;
begin_min[i] = temp_start_min;
end_hours[i] = temp_end_hour;
end_min[i] = temp_end_min;
cout << begin_hours[i]; //I did this to check if it was storing values
i++;
}
}while(c != end); //ending the do-while loop
I'd really appreciate a nudge in the right direction with this guys. Or advice in general on a concept I'm missing. Thanks!
The output I keep getting, by the way is: (this is for the input 'p 11:34 12:34')
11111111111111111111111111111111111111111111111111111111111111111111111111
11111111111111111111111111111111111111111111111111111111111111111111111111
111111111111111111111Segmentation fault (core dumped)
startandend? – cnicutar Oct 8 '11 at 5:57startandendhold? – Mahesh Oct 8 '11 at 5:57colon? Best guess, you're running off the end of your input and then all further reads fromcinbecome noops, as you never check for eof – Chris Dodd Oct 8 '11 at 6:09