Simple Looping

counter = 3;

while (counter > 0) {

    cout << "tick ";

    counter = counter - 1;  // could write counter--;

}