a for loop java code example
Example 1: java for loop
class for_loop
{
public static void main(String args[])
{
for(int i=0;i<10;i++)
{
System.out.print(" " + i);
}
/*
Output: 0 1 2 3 4 5 6 7 8 9
*/
}
}
Example 2: 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();
}