this program reads text files, and in this case, reads this one:
Sam
5 0 0 0
Dave
5 5 0 0
Bill
5 -5 0 0
Louise
3 3 5 0
Early in my program, I execute the following while loop:
int count = 0;
while (input.hasNextLine())
{
count++;
if (count % 2 == 1) //for every other line, reads the name
{
String line = input.nextLine();
names.add(line); //puts name into array
}
if (count % 2 == 0) //for every other line, reads the ratings
{
ArrayList<Integer> rtemp = new ArrayList<Integer>();
while (input.hasNextInt())
{
int tempInt = input.nextInt();
rtemp.add(tempInt);
}
allratings.add(rtemp);
}
}
For some reason, by the time this while loop is done, int count is at 14. I only want it to be at 8, and think that it should be, considering that there are only 8 lines of text, and it is supposed to execute for each line. Obviously, this causes big problems later in the program. Any idea what is going on?