// For loop using the loop counter #include using namespace std; int main () { cout << "Counting the loops:\n\n"; for (int i=1; i<=5; i++) { cout << i <<". Happy Birthday\n"; } cout << endl; system("pause"); return 0; }