Tuesday 25 April 2017

Java for loops ~ foundjava

Java for loops is very similar to Java while loops in that it continues to process a block of code until a statement becomes false, and everything is defined in a single line.
Syntax:
for ( init; condition; increment )
{
   statement(s);
}
java-for-loop
Example:
public class Sample {

    public static void main(String args[]) {
        /* local variable Initialization */
        int n = 1, times = 5;

        /* for loops execution */
        for (n = 1; n <= times; n = n + 1) {
            System.out.println("Java for loops:" + n);
        }
    }
}
Program Output:

java-for-loop

No comments:

Post a Comment