1for(int i = 0; i < 10; i++)
2{
3 //do something
4
5 //NOTE: the integer name does not need to be i, and the loop
6 //doesn't need to start at 0. In addition, the 10 can be replaced
7 //with any value. In this case, the loop will run 10 times.
8 //Finally, the incrementation of i can be any value, in this case,
9 //i increments by one. To increment by 2, for example, you would
10 //use "i += 2", or "i = i+2"
11}
1// Starting on 0:
2for(int i = 0; i < 5; i++) {
3 System.out.println(i + 1);
4}
5
6// Starting on 1:
7for(int i = 1; i <= 5; i++) {
8 System.out.println(i);
9}
10
11
12// Both for loops will iterate 5 times,
13// printing the numbers 1 - 5.
1int values[] = {1,2,3,4};
2for(int i = 0; i < values.length; i++)
3{
4 System.out.println(values[i]);
5}
1for(int i=0; i<10; i++){ //creates a counting vatiable i set to 0
2 //as long as i is < 10 (as long the condition is true)
3 // i is increased by one every cycle
4//do some stuff
5}