#include #include using namespace std; int i; int main() { i = 0; while (i<5){ // repeat this block while i<5 cout << i << endl; i = i+1; } }