-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhile loop
More file actions
33 lines (26 loc) · 770 Bytes
/
while loop
File metadata and controls
33 lines (26 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
C++ Loops
Loops can execute a block of code as long as a specified condition is reached.
Loops are handy because they save time, reduce errors, and they make code more readable.
C++ While Loop
The while loop loops through a block of code as long as a specified condition is true:
Syntax
while (condition) {
// code block to be executed
}
In the example below, the code in the loop will run, over and over again, as long as a variable (i) is less than 5:
Example
int i = 0;
while (i < 5) {
cout << i << "\n";
i++;
}
Note: Do not forget to increase the variable used in the condition, otherwise the loop will never end!
C++ Exercises
Test Yourself With Exercises
Exercise:
Print i as long as i is less than 6.
int i = 1;
(i < 6) {
cout << i << "\n";
;
}