For loop in Java

The for loop in java lets the developers to iterate over a list of values . The for loop executes until the exit condition matches .

Following the syntax of the for loop in java

for (initialization; condition;increment)
{
statement(s)
}

The initialization expression is used to initialize the loop and is executed as soon as the loop begins. The termination condition is verified every time and the loop terminates as soon as the termination condition returns false.

The increment expression is executed after each iteration in the loop. This expression can either be a increment or a decrement operator.

For loop in Java

Below is a sample code snippet demonstrating the usage of the for loop in java

package com.abundantcode;

public class Main {

    public static void main(String[] args)
    {
        for(int i=1;i<=10;i++){

            System.out.println(i);

        }
    }
}
image