For loop that counts from 0 to 10
for (int i = 0; i < 10 ; i++){ System.out.println(“loop is at “ + i); }
int counter = 0; while(counter < 10) { counter++; System.out.println(“loop is at “ + counter); }
In our class, we only need to worry about the bottom three rows.