The while and do-while loops in C++ are control structures that allow repeating the execution of a block of code as long as a specific condition is met.
These loops are useful when the exact number of iterations is not known in advance and, instead, we want to repeat code under certain conditions.
Differences between While and Do-While
- The
whileloop checks the condition before each iteration, while thedo-whileloop checks it after each iteration - The
do-whileloop guarantees at least one execution of the code block, whereas thewhileloop may not execute the block if the condition isfalsefrom the beginning
If you want to learn more about Loops
consult the Introduction to Programming Course read more
WHILE Loop
The while loop executes a block of code as long as a condition is true. The basic syntax of a while loop in C++ is as follows:
while (condition)
{
// Code to execute while the condition is true
}- condition: It is an expression that is evaluated in each iteration. If it is
true, the code block inside thewhileexecutes. If it isfalse, the loop ends. - Code to execute: This is where the code to be repeated is placed.
Basic Example
Let’s look at a basic example that uses a while loop to print numbers from 0 to 4:
#include <iostream>
int main() {
int counter = 0;
while (counter < 5) {
std::cout << counter << std::endl;
counter++;
}
return 0;
}In this example:
- The
whileloop prints the numbers from 0 to 4, as the conditioncounter < 5istruewhilecounteris less than 5.
DO-WHILE Loop
The do-while loop is similar to the while loop, but it guarantees that the code block is executed at least once. The basic syntax is as follows:
do
{
// Code to execute at least once
} while (condition);- Code to execute: Executes at least once before the condition is checked.
- Condition: Evaluated after each iteration. If it is
true, the code block executes again; if it isfalse, the loop ends.
Basic Example
Let’s look at an example that uses a do-while loop to print numbers from 0 to 4:
#include <iostream>
int main() {
int counter = 0;
do {
std::cout << counter << std::endl;
counter++;
} while (counter < 5);
return 0;
}In this example, the do-while loop
- Produces the same result as the previous
whileloop - But guarantees that the code executes at least once, even if
counterstarts as 5
Practical Examples
Count to 10
In this example, a while loop is used to count from 1 to 10 and print each number:
#include <iostream>
int main() {
int counter = 1;
while (counter <= 10) {
std::cout << counter << std::endl;
counter++; // Increment the counter by 1
}
return 0;
}This while loop executes while counter is less than or equal to 10, printing each value of counter and then incrementing it.
Sum positive numbers entered by the user
In this example, a while loop is used to sum positive numbers entered by the user until a negative number is entered:
#include <iostream>
int main() {
int sum = 0;
int number;
std::cout << "Enter a positive number (a negative number to end): ";
std::cin >> number;
while (number >= 0) {
sum += number; // Add the entered number to the variable 'sum'
std::cout << "Enter another positive number (a negative number to end): ";
std::cin >> number;
}
std::cout << "The total sum of positive numbers is: " << sum << std::endl;
return 0;
}This while loop executes while the user enters positive numbers. Each number is added to the variable sum. The loop ends when a negative number is entered.
Search for a number in a list
In this example, a while loop is used to search for a specific number in a list of numbers:
#include <iostream>
#include <vector>
int main() {
std::vector<int> numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int searched = 7;
int index = 0;
bool found = false;
while (index < numbers.size() && !found) {
if (numbers[index] == searched) {
found = true; // Mark that the number has been found
std::cout << "Number " << searched << " found at position " << index << std::endl;
}
index++; // Increment the index
}
if (!found) {
std::cout << "Number " << searched << " not found in the list" << std::endl;
}
return 0;
}This while loop searches for a specific number in a vector. If the number is found, its position is printed; if it is not found, it indicates that it is not in the list.
Confirm program continuation
In this example, a do-while loop is used to ask the user to enter “y” or “n” to confirm if they want to continue:
#include <iostream>
#include <string>
int main() {
std::string response;
do {
std::cout << "Do you want to continue? (y/n): ";
std::cin >> response;
} while (response != "y" && response != "n");
std::cout << "Program terminated." << std::endl;
return 0;
}This do-while loop prompts the user to enter “y” or “n”. The code block executes at least once and then repeats while the response is not “y” or “n”.
These examples are intended to show how to use the While loop. This does not mean that it is the best way to solve the problems they address