...could then use the following while loop to print the numbers from 0 to 9:
```
int i = 0;
while (i < 10) {
cout << i << endl;
i++;
}
```
###The Break Statement
The break statement can be used to terminate a while loop early. For example, the following code will print the numbers from 0...