Skip to main content
Engineering LibreTexts

14.1: Do While Loop

  • Page ID
    10324
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    Introduction to Test After Loops

    There are two commonly used test after loops in the iteration (or repetition) category of control structures. They are: do while and repeat until. This module covers the: do while.

    Understanding Iteration in General - do while

    The concept of iteration is connected to possibly wanting to repeat an action. Like all control structures we ask a question to control the execution of the loop. The term loop comes from the circular looping motion that occurs when using flowcharting. The basic form of the do while loop is as follows:

    do
      some statements or action
      some statements or action
      some statements or action
      update the flag
    while the answer to the question is true 
    

    In every language that I know the question (called a test expression) is a Boolean expression. The Boolean data type has two values – true and false. Let's rewrite the structure to consider this:

    do
      some statements or action
      some statements or action
      some statements or action
      update the flag
    while expression is true 
    

    Within the do while control structure there are three attributes of a properly working loop. They are:

    • Action or actions
    • Update of the flag
    • Test expression

    The English phrasing is, "You do the action while the expression is true". This is looping on the true. When the test expression is false, you stop the loop and go on with the next item in the program. Notice, because this is a test after loop the action will always happen at least once. It is called a test after loop because the test comes after the action. It is also sometimes called a post-test loop, meaning the test is post (or Latin for after) the action and update.

    The do while Structure within C++

    Syntax

    The syntax for the do while control structure within the C++ programming language is:

    do
      {
      statement;
      statement;
      statement;
      statement;    // This statement updates the flag;
      }
    while (expression); 
    

    The test expression is within the parentheses, but this is not a function call. The parentheses are part of the control structure. Additionally, there is a semicolon after the parenthesis following the expression.

    An Example

    C++ source code: do while loop
    do
      {
      cout << "\nWhat is your age? ";
      cin >> age_user;
      cout << "\nWhat is your friend's age? ";
      cin >> age_friend;
      cout >> "\nTogether your ages add up to: ";
      cout >> (age_user + age_friend);
      cout << "\nDo you want to do it again? y or n ";
      cin >> loop_response;
      }
    while (loop_response == 'y'); 
    

    The three attributes of a test after loop are present. The action part consists of the 6 lines that prompt for data and then displays the total of the two ages. The update of the flag is the displaying the question and getting the answer for the variable loop_response. The test is the equality relational comparison of the value in the flag variable to the lower case character of y.

    This type of loop control is called an event controlled loop. The flag updating is an event where someone decides if they want the loop to execute again.

    Using indentation with the alignment of the loop actions and flag update is normal industry practice within the C++ community.

    Infinite Loops

    At this point it's worth mentioning that good programming always provides for a method to insure that the loop question will eventually be false so that the loop will stop executing and the program continues with the next line of code. However, if this does not happen then the program is in an infinite loop. Infinite loops are a bad thing. Consider the following code:

    C++ source code: infinite loop
    loop_response = 'y';
    do
      {
      cout << "\nWhat is your age? ";
      cin >> age_user;
      cout << "\nWhat is your friend's age? ";
      cin >> age_friend;
      cout >> "\nTogether your ages add up to: ";
      cout >> (age_user + age_friend);
      }
    while (loop_response == 'y'); 
    

    The programmer assigned a value to the flag before the loop and forgot to update the flag. Every time the test expression is asked it will always be true. Thus, an infinite loop because the programmer did not provide a way to exit the loop (he forgot to update the flag).

    Consider the following code:

    C++ source code: infinite loop
    do
      {
      cout << "\nWhat is your age? ";
      cin >> age_user;
      cout << "\nWhat is your friend's age? ";
      cin >> age_friend;
      cout >> "\nTogether your ages add up to: ";
      cout >> (age_user + age_friend);
      cout << "\nDo you want to do it again? y or n ";
      cin >> loop_response;
      }
    while (loop_response = 'y'); 
    

    No matter what the user replies during the flag update, the test expression does not do a relational comparison but does an assignment. It assigns 'y' to the variable and asks if 'y' is true? Since all non-zero values are treated as representing true within the Boolean concepts of the C++ programming language, the answer to the text question is true. Viola, you have an infinite loop.

    Definitions

    Do While
    A test after iteration control structure available in C++.
    Action Item
    An attribute of iteration control structures.
    Update Item
    An attribute of iteration control structures.
    Test Item
    An attribute of iteration control structures.
    At Least Once
    Indicating that test after loops execute the action at least once.
    Infinite Loop
    No method of exit, thus a bad thing.

    This page titled 14.1: Do While Loop is shared under a CC BY license and was authored, remixed, and/or curated by Kenneth Leroy Busbee (OpenStax CNX) .

    • Was this article helpful?