I don\'t get it why i
in fillArray
method ends up being equal to 10
even though the array score is filled only up to index 9
You must understand exactly how the for
loop works to understand what is going on, and why i
is 10
after the for
loop in fillArray
.
false
, break out of the loop.In the last iteration of the i
for
loop, i
is 9
, and index 9
is assigned in the array, step 3. Step 4 performs the increment, and i
is now 10
. Then the condition is tested, which is false
, and the loop is exited. i
is now 10
.
However, in your main
for
loop, you print the value in the body instead of examining the looping variable afterwards. The last iteration is when i
is 10
, because the condition is different: i < 11
. If you were to print i
after that for
loop, you'll see it's 11
.
While others have already explained in detail , to eliminate confusion you could modify your code to something like :
double next = keyboard.nextDouble();
int i = 0;
int current_i = i;
for( i = 0; ( next >= 0 && i < a.length ); i++ )
{
current_i = i;
a[i] = next;
next = keyboard.nextDouble();
}
return current_i;
instead of
double next = keyboard.nextDouble();
int i = 0;
for(i = 0;(next>=0 && i<a.length);i++){ //HELP!!!!
a[i] = next;
next = keyboard.nextDouble();
}
return i;
in For loop, increment occurs after testing loop condition, not before. So in last iteration when your condition is checked, I is already equal to 10 and that is exactly what is being returned. Consider this, if your I would still be 9 in last iteration, your condition would still be true which would mean one more execution in loop.