Wednesday, 8 November 2017

Java for loops

November 08, 2017 Posted by Prakash No comments

Java for loops

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.
The basic format of for loop statement is:
Syntax:
for ( init; condition; increment )
{
   statement(s);
}
Figure – Flowchart of for loop:

Example of a Java Program to Demonstrate 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

0 comments:

Post a Comment