[go: up one dir, main page]

Open In App

Java do-while loop with Examples

Last Updated : 22 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Loops in Java come into use when we need to repeatedly execute a block of statements. Java do-while loop is an Exit control loop. Therefore, unlike for or while loop, a do-while check for the condition after executing the statements of the loop body.

Syntax: 

do
{
    // Loop Body
    Update_expression
}

// Condition check
while (test_expression);

Note: The test_expression for the do-while loop must return a boolean value , else we would get compile-time error.

Application of do-while : Its example application is showing some kind of menu to the users. 

For example: 

You are implementing a game where you show some options to the user, press 1 to do this .., press 2 to do this .. etc and press ‘Q’ to quit the game. So here you want to show the game menu to the user at least once, so you write the code for the game menu inside the do-while loop.

Illustration:

Java




// Java Program to Illustrate One Time Iteration
// Inside do-while Loop
// When Condition IS Not Satisfied
 
// Class
class GFG {
 
    // Main driver method
    public static void main(String[] args)
    {
        // initial counter variable
        int i = 0;
 
        do {
 
            // Body of loop that will execute minimum
            // 1 time for sure no matter what
            System.out.println("Print statement");
            i++;
        }
 
        // Checking condition
        // Note: It is being checked after
        // minimum 1 iteration
        while (i < 0);
    }
}


Output

Print statement

Output explanation:

In the above code, we figured out that the condition is checked later as the body inside do will get executed one time without fail as the condition is checked later onwards. Hence whenever we want to display the menu and later on proceed command on the terminal, we always use do-while loop.

Components of do-while Loop  

A. 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. For example: 

i <= 10

B. Update Expression: After executing the loop body, this expression increments/decrements the loop variable by some value. For example:  

i++;
Execution of do-While loop 
  1. Control falls into the do-while loop.
  2. The statements inside the body of the loop get executed.
  3. Updation takes place.
  4. The flow jumps to Condition
  5. Condition is tested. 
    1. If Condition yields true, go to Step 6.
    2. If Condition yields false, the flow goes outside the loop
  6. The flow goes back to Step 2.
Flowchart do-while loop:

Implementation:

Example 1: This program will try to print “Hello World” 5 times.  

Java




// Java Program to Illustrate Do-while Loop
 
// Class
class GFG {
 
    // Main driver method
    public static void main(String args[])
    {
 
        // Declaring and initialization expression
        int i = 1;
 
        // Do-while loop
        do {
 
            // Body of do-while loop
            // Print statement
            System.out.println("Hello World");
 
            // Update expression
            i++;
        }
 
        // Test expression
        while (i < 6);
    }
}


Output: 

Hello World
Hello World
Hello World
Hello World
Hello World

 

Auxiliary Space: O(1)

Output explanation: 

The program will execute in the following manner as follows:

  1. Program starts.
  2. i is initialized with value 1.
  3. Execution enters the loop
    • “Hello World” gets printed 1st time.
    • Updation is done. Now i = 2.
  4. Condition is checked. 2 < 6 yields true.
  5. Execution enters the loop.
    • “Hello World” gets printed 2nd time.
    • Updation is done. Now i = 3.
  6. Condition is checked. 3 < 6 yields true.
  7. Execution enters the loop
    • “Hello World” gets printed 3rd time
    • Updation is done. Now i = 4.
  8. Condition is checked. 4 < 6 yields true.
  9. Execution enters the loop
    • “Hello World” gets printed 4th time
    • Updation is done. Now i = 5.
  10. Condition is checked. 5 < 6 yields true.
  11. Execution enters the loop
    • “Hello World” gets printed 5th time
    • Updation is done. Now i = 6.
  12. Condition is checked. 6 < 6 yields false.
  13. The flow goes outside the loop.

Example 2

Java




// Java Program to Illustrate Do-while Loop
 
// Class
class GFG {
 
    // Main driver method
    public static void main(String args[])
    {
        // Declaring and initializing integer values
        int x = 21, sum = 0;
 
        // Do-while loop
        do {
 
            // Execution statements(Body of loop)
 
            // Here, the line will be printed even
            // if the condition is false
            sum += x;
            x--;
        }
 
        // Now checking condition
        while (x > 10);
 
        // Summing up
        System.out.println("Summation: " + sum);
    }
}


Output: 

Summation: 176

 

Example 3: do-while loop without curly braces {}

Java




/*package whatever //do not write package name here */
 
import java.io.*;
 
class GFG {
    public static void main (String[] args) {
      int i=1;
      do
        // only single statement in do block
        System.out.println("Hello GFG!");
      // this condition is false so only do block will execute
      while(i>=3);
       
       
    }
}


Output

Hello GFG!

&list=PLqM7alHXFySF5ErEHA1BXgibGg7uqmA4_&ab_channel=GeeksforGeeks

Related Articles: 

  1. Loops in Java
  2. Java For loop with Examples
  3. Java while loop with Examples
  4. Difference between while and do-while loop in C, C++, Java
  5. Difference between for and do-while loop in C, C++, Java


Previous Article
Next Article

Similar Reads

Difference between while and do-while loop in C, C++, Java
while loop: A 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. Syntax : while (boolean condition) { loop statements... } Flowchart: Example: C/C++ Code #include &lt;stdio.h&gt; int main() { int i = 5; while (i &lt; 10)
2 min read
Java while loop with Examples
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 o
4 min read
Difference between for and do-while loop in C, C++, Java
for loop: for loop provides a concise way of writing the loop structure. Unlike a while loop, a for statement consumes the initialization, condition and increment/decrement in one line thereby providing a shorter, easy to debug structure of looping. Syntax: for (initialization condition; testing condition; increment/decrement) { statement(s) } Flow
2 min read
Difference between for and while loop in C, C++, Java
In C, C++, and Java, both for loop and while loop is used to repetitively execute a set of statements a specific number of times. However, there are differences in their declaration and control flow. Let's understand the basic differences between a for loop and a while loop. for Loop A for loop provides a concise way of writing the loop structure.
5 min read
Java Program to Reverse a Number and find the Sum of its Digits Using do-while Loop
Problem Statement: The number is supposed to be entered by the user be it any random number lying within the primitive data-type holding the number. First, the number needs to be reversed. Secondary the sum of the number is to be calculated with the constraint to use a do-while loop. do-while loop: Now the user sometimes does get confused between a
6 min read
Java Program to Find Sum of Natural Numbers Using While Loop
While loop arises into play where beforehand there is no conclusive evidence that how many times a loop is to be executed. This is the primary reason as there is no strict tight bound over how many numbers the sum is to be evaluated. Situations in which the output can be displayed using test condition abiding hardcoded outputs by simply running the
3 min read
Java Program to Compute the Sum of Numbers in a List Using While-Loop
The task is to compute the sum of numbers in a list using while loop. The List interface provides a way to store the ordered collection. It is an ordered collection of objects in which duplicate values can be stored. Since List preserves the insertion order, it allows positional access and insertion of elements. Approach Create a list.Create two in
2 min read
Perfect Number Program in Java Using While Loop
The number which is equal to the sum of its divisors is called a perfect number. Read the entered long number, assigned to the long variable n. While loop iterates until the condition (i&lt;=n/2) is false. If the remainder of n/i=0 then add i value to the sum and increase the i value. After all the iterations compare the number with the sum, if bot
2 min read
C++ While Loop
While Loop in C++ is used in situations where we do not know the exact number of iterations of the loop beforehand. The loop execution is terminated on the basis of the test condition. Loops in C++ come into use when we need to repeatedly execute a block of statements. During the study of the 'for' loop in C++, we have seen that the number of itera
3 min read
C++ Do/While Loop
Loops come into use when we need to repeatedly execute a block of statements. Like while the do-while loop execution is also terminated on the basis of a test condition. The main difference between a do-while loop and a while loop is in the do-while loop the condition is tested at the end of the loop body, i.e do-while loop is exit controlled where
3 min read
Practice Tags :