<p>sorry i messed up. here's what i think it should actually be:
0
1
2
3
4
5
6
7
8
9</p>
<p>0
2
4
6
8
0
2
4
6
8</p>
<p>first, the loop starts with the i = 0.
at the beginning of the loop for the int i, it goes to another loop without a bound. therefore, only the function called directly after is looped. so that loop uses j. and it displays a println for i<em>j%10. so essentially, the modulus 10 is having the units digit of the product of i</em>j displayed.</p>