increment loop java code example
Example 1: for loop java
// Starting on 0:
for(int i = 0; i < 5; i++) {
System.out.println(i + 1);
}
// Starting on 1:
for(int i = 1; i <= 5; i++) {
System.out.println(i);
}
// Both for loops will iterate 5 times,
// printing the numbers 1 - 5.
Example 2: for loop java
for (int i = 0; i < 5; i++) {
System.out.println(i);
}
Example 3: java for increment by 2
int n = 2; //Or any other number
for (int i=0; i < 10; i+=n){
System.out.println(i) //This will print 0,2,4,6,8
}