Home » Java while loop

Java while loop

by Online Tutorials Library

Java While Loop

The Java while loop is used to iterate a part of the program repeatedly until the specified Boolean condition is true. As soon as the Boolean condition becomes false, the loop automatically stops.

The while loop is considered as a repeating if statement. If the number of iteration is not fixed, it is recommended to use the while loop.

Syntax:

The different parts of do-while loop:

1. Condition: It is an expression which is tested. If the condition is true, the loop body is executed and control goes to update expression. When the condition becomes false, we exit the while loop.

Example:

i <=100

2. Update expression: Every time the loop body is executed, this expression increments or decrements loop variable.

Example:

i++;

Flowchart of Java While Loop

Here, the important thing about while loop is that, sometimes it may not even execute. If the condition to be tested results into false, the loop body is skipped and first statement after the while loop will be executed.

flowchart of java while loop

Example:

In the below example, we print integer values from 1 to 10. Unlike the for loop, we separately need to initialize and increment the variable used in the condition (here, i). Otherwise, the loop will execute infinitely.

WhileExample.java

Test it Now

Output:

1  2  3  4  5  6  7  8  9  10  

Java Infinitive While Loop

If you pass true in the while loop, it will be infinitive while loop.

Syntax:

Example:

WhileExample2.java

Output:

infinitive while loop  infinitive while loop  infinitive while loop  infinitive while loop  infinitive while loop  ctrl+c  

In the above code, we need to enter Ctrl + C command to terminate the infinite loop.


Next TopicJava do-while Loop

You may also like