|
Java Reference Home | Smart Soft Home |
|
|
for
CategoryLoopsDescriptionDefines a block of statements that will be i number of times. This just a condensed form of the while loop.Examplefor(int i=0;i<10;i++){
System.out.println("Do this 10 times");
System.out.println("Do this 10 times");
System.out.println("Do this 10 times");
}
|
|