In C++ programming, loops (Loops) are an important control structure used to execute the same or similar multiple timesCode block, thereby achieving repetitive tasks and operations. This article will introduce several common types in C++Circular structure, their usage and examples help you fully understand the application and implementation of loops.
1. while loop
while
The loop checks whether the condition is true before each iteration, and if it is true, the statement inside the loop body is executed.
#include <iostream>
int main() {
int count = 1;
while (count <= 5) {
std::cout << "Count: " << count << std::endl;
count++;
}
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
Analysis:
-
Circulation conditions:
count <= 5
, check before each iterationcount
Whether it is less than or equal to 5. -
Circulation body: implement
std::cout
Output the currentcount
value, thencount
Self-increasing.
2. do-while loop
do-while
The loop executes the loop body first, then checks whether the condition is true, and if it is true, continues the loop.
#include <iostream>
int main() {
int count = 1;
do {
std::cout << "Count: " << count << std::endl;
count++;
} while (count <= 5);
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
Analysis:
-
Circulation body: Execute first
std::cout
Output the currentcount
value, thencount
Self-increasing. -
Circulation conditions:
count <= 5
, check after each iterationcount
Whether it is less than or equal to 5, and if so, continue to execute.
3. for loop
for
Loops provide a concise way to iterate over the code, which contains initialization statements, loop conditions, and iterative expressions.
#include <iostream>
int main() {
for (int count = 1; count <= 5; count++) {
std::cout << "Count: " << count << std::endl;
}
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
Analysis:
-
Initialization statement:
int count = 1
, initialize before entering the loopcount
variable. -
Circulation conditions:
count <= 5
, check before each iterationcount
Whether it is less than or equal to 5. -
Die Representative Proposition:
count++
, after each cycle is overcount
value.
4. Nested Loop
In C++, one or more loops can be nested inside a loop to achieve more complex control flows and logic.
#include <iostream>
int main() {
for (int i = 1; i <= 3; i++) {
for (int j = 1; j <= 3; j++) {
std::cout << "i: " << i << ", j: " << j << std::endl;
}
}
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
Analysis:
- External loop
for (int i = 1; i <= 3; i++)
Control variablesi
The value of 1 to 3. - Internal loop
for (int j = 1; j <= 3; j++)
Control variablesj
The value of 1 to 3 is performed once in each iteration of the outer loop.
5. Loop control statement
In a loop, control statements can also be used to control the execution flow of the loop, e.g.break
、continue
andgoto
。
Example:
- break: Terminate loop execution in advance.
for (int i = 1; i <= 5; i++) {
if (i == 3) {
break; // Loop out when i equals 3
}
std::cout << "i: " << i << std::endl;
}
- 1
- 2
- 3
- 4
- 5
- 6
- continue: Skip the current iteration and continue to execute the next iteration.
for (int i = 1; i <= 5; i++) {
if (i == 3) {
continue; // Skip this iteration when i equals 3
}
std::cout << "i: " << i << std::endl;
}
- 1
- 2
- 3
- 4
- 5
- 6
- goto: Jump to the label position in the program.
int i = 1;
loop: // Label
if (i <= 5) {
std::cout << "i: " << i << std::endl;
i++;
goto loop; // Jump to the tag loop to continue execution
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
6. Choice of loop
When choosing which loop structure to use, it is usually determined based on specific requirements and code logic:
- use
while
Loop when you need to execute a certain piece of code repeatedly according to the conditions. - use
for
Looping when you need a concise loop control structure, especially when the number of iterations is known. - use
do-while
Loop when you need to execute the loop body at least once, and then execute it repeatedly according to the conditions. - Use nested loops to process multidimensional data or require complex iterative logic to be executed.
Conclusion
Through the introduction of this article, you should have mastered several common loop structures and their application scenarios in C++. Loops are an important tool in programming that can help us handle repetitive tasks and data efficiently. In practical applications, selecting the appropriate loop structure according to specific needs and flexibly applying it in combination with control statements can improve the clarity of the code and execution efficiency. Hope this article can be helpful to your loop application in C++ programming.