how to do a for lus in java code example
Example 1: for loop java
for (int i = 0; i < 5; i++) {
System.out.println(i);
}
Example 2: 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
*/
}
}