Alright, I figured out what is going on here. The for loop will end once it categorizes the first input. You need to create a new for loop for each input. For example:
for(int i = 0;i <3; i++)
{
if input1... //"..." are the rest of the code for the line
.....;
elseif input1...
.....;
elseif input1...
.....;
}
for(int i = 0;i <3; i++)
{
if input2....
....;
elseif input2....
....;
elseif input2...
....;
}
for(int i = 0;i <3; i++)
//same as above, but with imput3
I just started doing that I just need to reorganize cause ive been trying while loops at first and it would go on forever after the 1st item - as a matter of fact how do you keep a while loop from going on endlessly again? I forgot - AND THANKS A LOT KHRIS!!!
Hmm, I'm still new to C++ so I'm not sure how to keep a while loop from going on endlessly. I hope someone else chimes in on this so I can learn also..