#include #include #include //for sleep using namespace std; int main() { for (int b {100}; b >= 1; --b) { //--b means b = b - 1 cout << b << " bottles of beer on the wall,\n" << b << " bottles of beer--\n" << "If one of those bottles should happen to fall,\n" << b - 1 << " bottles of beer on the wall\n\n"; sleep(2); //pause for 2 seconds } return EXIT_SUCCESS; }