#Concept #Study #CPP
Post test loop, loop body is executed once
```cpp
do{
statements;
} while (expression);
```
## Example
```cpp
int number {};
do{
cout << "Enter an integer between 1 and 5: ";
cin >> number;
} while (number <= 1 || number >= 5);
cout << "Thanks" << endl;
```
## 🔗Resources