java a for loop is what is known as a code example
Example: 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
*/
}
}