for loop exaples code example
Example 1: Java for loop
int values[] = {1,2,3,4};
for(int i = 0; i < values.length; i++)
{
System.out.println(values[i]);
}
Example 2: 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 3: for loop java
for(/*index declaration*/int i=0; /*runs as long as this is true*/
i<=5; /*change number at end of loop*/i++){
doStuff();
}