2017-07-18 00:58:18 +00:00
|
|
|
// There are only 'for', 'while', and 'do while'
|
|
|
|
|
2020-10-15 17:29:27 +00:00
|
|
|
// For loop - Outputs "0 1 2 3 4 5 6 7 8 9"
|
2017-07-18 00:58:18 +00:00
|
|
|
for( int i=0; i<10; i++ ) {
|
2020-10-15 17:29:27 +00:00
|
|
|
std::cout << i << " ";
|
2017-07-18 00:58:18 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 17:29:27 +00:00
|
|
|
// While loop - Outputs "0 1 2 3 4 5 6 7 8 9"
|
|
|
|
int i = 0;
|
|
|
|
while( i < 10 ) {
|
2017-07-18 00:58:18 +00:00
|
|
|
std::cout << i << " ";
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2020-10-15 17:29:27 +00:00
|
|
|
// While loop - Outputs "0 "
|
|
|
|
int i = 0;
|
|
|
|
do {
|
|
|
|
std::cout << i << " ";
|
2017-07-18 00:58:18 +00:00
|
|
|
}while( i<0 );
|