for examples java
Example: 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();
}
for(/*index declaration*/int i=0; /*runs as long as this is true*/
i<=5; /*change number at end of loop*/i++){
doStuff();
}