For Loops

When you know exactly how many times you want to loop through a block of code, use a for loop instead of a while loop:

for (initialization; condition; iteration) {
  // code block to be executed
}

The example below will print the numbers 0 to 4:

for (int i = 0; i < 5; i++) {
  System.out.println(i);
}

This example will only print even values between 0 and 10:

for (int i = 0; i <= 10; i = i + 2) {
  System.out.println(i);
}