for
A for loop repeats a group of statements a given number of times.
for (initialization; test; update) { statement(s) to repeat; }
Example:
for (int i = 1; i <= 10; i++) { System.out.println("We're number one!"); }