#include
#include
using namespace std;
int main()
{
int bottles = 99;
for (int i = 0; i < 99; i++)
{
cout << bottles << " bottles of beer on the wall, " << bottles << " bottles of beer." << endl;
bottles--;
cout << "Take one down, pass it around, " << bottles << " bottles of beer on the wall...." << endl;
}
(
Read more... )