Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconFull Stack Developmentbreadcumb forward arrow iconJava Do While Loop With Examples

Java Do While Loop With Examples

Last updated:
17th Aug, 2022
Views
Read Time
9 Mins
share image icon
In this article
Chevron in toc
View All
Java Do While Loop With Examples

iterations do not have a fixed value, it is recommended to use a do-while loop as it is guaranteed to be executed once. This is possible because the condition is checked post the body of the loop is executed. That is why it is an Exit Control Loop

Thus, do while Java is a variant of while loop that runs the code block before the condition is evaluated as true and then repeat it as long as the condition is true, just like while loop. 

The do while loop in java is identical to the while loop. Both of them execute a given set of statements. But the difference is that the do while loop runs entirely although the condition is not fulfilled. It will execute until the mentioned condition is true and will exit as soon as the condition is not met.

Check out our free courses to get an edge over the competition

Ads of upGrad blog

If the condition is true, the control reaches the start of the loop. But if the condition is false, the control will break out of the loop. It implies that the statements within the loop are executed before the condition is checked. Hence, the do while loop must be employed in all cases where the loop body has to be executed at least once.  The reason is that the condition is checked after executing the loop body. 

Typically, in a menu-driven program, the actions are supposed to be taken iteratively depending on the user input. In such programs, a do while loop helps understand the action the user wants to implement. In those cases, the control breaks out of the loop if the user input equals the exit command. You can better understand it’s working with a do while loop example java.

Check out upGrad’s Advanced Certification in Cloud Computing

The do while loop in java is known as an exit control loop. Thus, unlike “for loop” and “while loop”, the “do-while loop” tests the condition at the loop body’s termination. The do while loop program in java comes in handy when you want to execute a block of statements recurrently.

Do While Java Syntax

do{  

//body of the code  

}while(condition);  

Here the condition is a Boolean expression that appears at the end of the loop. If the expressions are evaluated to true, the control jumps back to the do statement, and the loop is executed again. The process repeats till the Boolean expression is evaluated as false. 

Check out upGrad’s Advanced Certification in Blockchain

Explore Our Software Development Free Courses

Components of do-while Loop: 

If you want to test a sample do while loop program in java, you should first understand its components. Its two components are Test Expression and Update Expression:

 Test Expression: You need to test the condition in this expression.  If that condition is true, the body of the loop is executed, and the program flow goes to update expression. Else, it will exit from the while loop. You need to use a Test Expression when you start learning the execution of do while loop example java, for example, i <= 5.

Update Expression: After the loop body executes, the Update Expression increments/decrements the loop variable by a certain value. For example, you can use  i– to decrement the i’s value in a do while program in java.

Example

public class Example {  

public static void main(String[] args) {  

    int i=1;  

    do{  

        System.out.println(i);  

    i++;  

    }while(i<=5);  

}  

}  

Explanation: The given loop runs six times. Hence, the value of i is 6, but it is not printed as the condition evaluates to false. 

In-Demand Software Development Skills

How Does a Do-While Loop Execute?

  1. The control falls into the do while the Java loop as ‘do’ is encountered.
  2. The statements in the body of the loop (code) are executed.
  3. The variable is updated.
  4. The flow now comes to 
  5. the condition.
  6. If it is true, then step 6 is executed; otherwise, the flow goes out of the loop.
  7. Flow moves back to step 2

Applications

Do While Java Infinite

An infinite loop is created when the Boolean expression is passed as true in the do-while java loop. 

Here is a do-while Java infinite loop example.

public class Example {

public static void main(String[] args)  {

do {

System.out.println(“Start Processing inside do while loop”);

// Any other statements can be added

System.out.println(“End Processing of do while loop”);

Thread.sleep(2 * 1000);

} while (true);

}

}

Explanation: The statements keep on being executed till the program is terminated using the IDE. 

Sum of Natural Numbers up to a Given Number

public class Example { 

public static void main(String args[]) 

int x = 7, sum = 0;

do { // The line will be printed even 

// if the condition is false 

sum += x; 

x–;

} while (x > 0); 

System.out.println(“Sum: ” + sum); 

}

Iteration of Array using Do While Java Loop.

Here’s an example of iteration of an integer array using do-while loop in Java:

class Example{

    public static void main(String args[]){

         int arr[]={0,1,45,9};

         int i=0;

         do{

              System.out.println(arr[i]);

              i++;

         }while(i<4);

    }

}

upGrad’s Exclusive Software Development Webinar for you –

SAAS Business – What is So Different?

 

Nesting of Do-While Loops

It is possible to have a do-while in a do-while Java loop. This is known as nesting of do-while construction. There is no upper bound to the depth of nesting. A do-while can have any construct like if, while, switch, etc., inside it. For example:

class Example{

        public static void main(String args[])

    {

         int a=10;

do   // 1st do while

{

System.out.println(10);

         do// 2nd do while

          System.out.println(20);

           }

          while(false); 

        }

         while(false); 

    }

}

Explore our Popular Software Engineering Courses

Do While vs While Loop

  • While loop is an entry control loop, whereas the do-while is an exit controlled loop
  • Java while looks cleaner than do while Java loop. 
  • The Do while loop executes at least once irrespective of the condition. 

Why use Do-While?

When you require your program to be executed a minimum once, use do-while. For example, you have to take input from the user until the user enters a negative number. In such a case, a do-while loop is used as the initial input can be positive or negative, but we require input. In all other cases, it is easier to use a while loop. 

Learn Software Courses online from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.

An Application of the do-while loop in Java:

This example menu helps you to show some menus to the users. Suppose you are developing a game program for demonstrating some options to the user. For example, press ‘1’ for running, press ‘2’ for stopping, and press ‘Q’ to quit the game. In this case, you want to show your game menu to users at least once. Hence, you can write this game code within the do-while loop in Java.

Things to Remember

  1. The body of the do-while loop is required to have a minimum of one statement 
  2. The condition (boolean expression) at the end of the loop must always result in a Boolean value.
  3. Without the condition, the loop cannot be executed.
  4. An error would be raised if a do statement does not correspond with a while statement. 
  5. The do while program in java needs an initial statement. Using this initial statement, the loop begins execution before repeating.
  6. Repeating ensures all the statements in the loop are executed in sequence.
  7. There must be a statement that would cause repetition after the first pass or any pass.
  8. If you want the loop to stop repeating, there must be a condition that will avoid repeating.

Conclusion

Ads of upGrad blog

The do-while Java loop is used for iterating a set of statements until a given condition is met. In this blog, you learned about the loop, its syntax, uses, nesting, and comparison with the while loop. 

If you’re interested to learn more about JAVA, Full-stack software development, check out upGrad & IIIT-B’s Executive PG Program in Full-stack Software Development which is designed for working professionals and offers 500+ hours of rigorous training, 9+ projects, and assignments, IIIT-B Alumni status, practical hands-on capstone projects & job assistance with top firms.

If you are looking to know more about Java and move up in your coding career, explore courses by upGrad – India’s largest online higher education company. Visit upGrad for more information. 

Profile

Rohit Sharma

Blog Author
Rohit Sharma is the Program Director for the UpGrad-IIIT Bangalore, PG Diploma Data Analytics Program.

Frequently Asked Questions (FAQs)

1What are loops in programming?

In programming, a loop is a segment of code that repeats continuously until a particular condition is met. A loop is a structure in which the sequence of the flow of execution is controlled by a condition. Loops are a programming construct for performing an action repeatedly. This can be anything from displaying a message on the terminal several times to performing a calculation thousands of times. Most programming languages have some form of loops such as for loop, while loops, do-while loops, foreach loops, etc.

2What are java functions?

A function is a set of statements that perform a certain task. The task can be to return a value (returning a value is also known as a return value) or to make changes. Functions are used to simplify the code. Functions allow us to break code into maintainable and manageable chunks. They allow us to reuse the code. In Java, there are three types of functions. The first one is the Built-in functions. These are the functions which are provided by the Java. For example: System.out.println(). Java also supports user-defined functions. These are the functions which are written by the programmer.

3What are the features of java programming language?

Java has a rich and powerful syntax that is similar to C and C++. It uses C and C++ data types like int, char, float and double. Java is a platform-independent language that can be used to develop programs for any platform. It is a statically typed language. It does automatic memory management in the same way that C and C++ do. It supports multi-threading, networking, databases and graphical user interfaces.

Explore Free Courses

Suggested Tutorials

View All

Suggested Blogs

Top 7 Node js Project Ideas &#038; Topics
31584
Node.JS is a part of the famous MEAN stack used for web development purposes. An open-sourced server environment, Node is written on JavaScript and he
Read More

by Rohan Vats

05 Mar 2024

How to Rename Column Name in SQL
46947
Introduction We are surrounded by Data. We used to store information on paper in enormous file organizers. But eventually, we have come to store it o
Read More

by Rohan Vats

04 Mar 2024

Android Developer Salary in India in 2024 [For Freshers &#038; Experienced]
901334
Wondering what is the range of Android Developer Salary in India? Software engineering is one of the most sought after courses in India. It is a reno
Read More

by Rohan Vats

04 Mar 2024

7 Top Django Projects on Github [For Beginners &amp; Experienced]
52129
One of the best ways to learn a skill is to use it, and what better way to do this than to work on projects? So in this article, we’re sharing t
Read More

by Rohan Vats

04 Mar 2024

Salesforce Developer Salary in India in 2024 [For Freshers &#038; Experienced]
909210
Wondering what is the range of salesforce salary in India? Businesses thrive because of customers. It does not matter whether the operations are B2B
Read More

by Rohan Vats

04 Mar 2024

15 Must-Know Spring MVC Interview Questions
34763
Spring has become one of the most used Java frameworks for the development of web-applications. All the new Java applications are by default using Spr
Read More

by Arjun Mathur

04 Mar 2024

Front End Developer Salary in India in 2023 [For Freshers &#038; Experienced]
902394
Wondering what is the range of front end developer salary in India? Do you know what front end developers do and the salary they earn? Do you know wh
Read More

by Rohan Vats

04 Mar 2024

Method Overloading in Java [With Examples]
26265
Java is a versatile language that follows the concepts of Object-Oriented Programming. Many features of object-oriented programming make the code modu
Read More

by Rohan Vats

27 Feb 2024

50 Most Asked Javascript Interview Questions &#038; Answers [2024]
4394
Javascript Interview Question and Answers In this article, we have compiled the most frequently asked JavaScript Interview Questions. These questions
Read More

by Kechit Goyal

26 Feb 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon