loops in java code example
Example 1: java for loop
for(int i = 0; i < 10; i++)
{
//do something
//NOTE: the integer name does not need to be i, and the loop
//doesn't need to start at 0. In addition, the 10 can be replaced
//with any value. In this case, the loop will run 10 times.
//Finally, the incrementation of i can be any value, in this case,
//i increments by one. To increment by 2, for example, you would
//use "i += 2", or "i = i+2"
}
Example 2: 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 3: Java for loop
int values[] = {1,2,3,4};
for(int i = 0; i < values.length; i++)
{
System.out.println(values[i]);
}
Example 4: how to make a loop in java
for (int i = 0; i < 3; i++) {}
Example 5: java for
for(int i=0; i<10; i++){ //creates a counting vatiable i set to 0
//as long as i is < 10 (as long the condition is true)
// i is increased by one every cycle
//do some stuff
}
Example 6: loops in java
1-For (for each)
2-While Loop
3-Do-While loop