Java while loop with Examples
Last Updated :
13 Dec, 2023
Java while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating if statement. While loop in Java comes into use when we need to repeatedly execute a block of statements. The while loop is considered as a repeating if statement. If the number of iterations is not fixed, it is recommended to use the while loop.
Syntax:
while (test_expression)
{
// statements
update_expression;
}
Note: If we do not provide the curly braces ‘{‘ and ‘}’ after while( condition ) then by default while statement will consider the immediate one statement to be inside its block.
while (test_expression)
// single statement in while only
Parts of Java While Loop
The various parts of the While loop are:Â
1. Test Expression: In this expression, we have to test the condition. If the condition evaluates to true then we will execute the body of the loop and go to update expression. Otherwise, we will exit from the while loop.Â
Example:Â
i <= 10
2. Update Expression: After executing the loop body, this expression increments/decrements the loop variable by some value.Â
Example:Â
i++;
How Does a While loop execute?Â
- Control falls into the while loop.
- The flow jumps to Condition
- Condition is tested.Â
- If Condition yields true, the flow goes into the Body.
- If Condition yields false, the flow goes outside the loop
- The statements inside the body of the loop get executed.
- Updation takes place.
- Control flows back to Step 2.
- The while loop has ended and the flow has gone outside.
Flowchart For while loop (Control Flow):Â
Examples of Java while loop
Example 1: This program will try to print “Hello World” 5 times.Â
Java
class whileLoopDemo {
public static void main(String args[])
{
int i = 1 ;
while (i < 6 ) {
System.out.println( "Hello World" );
i++;
}
}
}
|
Output
Hello World
Hello World
Hello World
Hello World
Hello World
Complexity of the above method:Â Â
Time Complexity: O(1)
Auxiliary Space : O(1)
Dry-Running Example 1: The program will execute in the following manner.Â
1. Program starts.
2. i is initialized with value 1.
3. Condition is checked. 1 < 6 yields true.
3.a) "Hello World" gets printed 1st time.
3.b) Updation is done. Now i = 2.
4. Condition is checked. 2 < 6 yields true.
4.a) "Hello World" gets printed 2nd time.
4.b) Updation is done. Now i = 3.
5. Condition is checked. 3 < 6 yields true.
5.a) "Hello World" gets printed 3rd time
5.b) Updation is done. Now i = 4.
6. Condition is checked. 4 < 6 yields true.
6.a) "Hello World" gets printed 4th time
6.b) Updation is done. Now i = 5.
7. Condition is checked. 5 < 6 yields true.
7.a) "Hello World" gets printed 5th time
7.b) Updation is done. Now i = 6.
8. Condition is checked. 6 < 6 yields false.
9. Flow goes outside the loop. Program terminates.
Example 2: This program will find the summation of numbers from 1 to 10.Â
Java
class whileLoopDemo {
public static void main(String args[])
{
int x = 1 , sum = 0 ;
while (x <= 10 ) {
sum = sum + x;
x++;
}
System.out.println( "Summation: " + sum);
}
}
|
Complexity of the above method
Time Complexity: O(1)
Auxiliary Space : O(1)
Video Referal for Java while Loop
 Related Articles:Â
- Loops in Java
- Java For loop with Examples
- Java do-while loop with Examples
- Difference between for and while loop in C, C++, Java
- Difference between while and do-while loop in C, C++, Java
Like Article
Suggest improvement
Share your thoughts in the comments
Please Login to comment...