Please send questions to
st10@humboldt.edu .
#include <iostream>
#include "uglyBeerVerse.h"
using namespace std;
// oh, just a quick'n'dirty test of uglyBeerVerse....
//
// by: Sharon M. Tuttle
// last modified: 10-28-03
int main()
{
int bottleNum;
// test calls to beer verse function
bottleNum = 89;
uglyBeerVerse(bottleNum);
cout << endl << "bottlenNum after call: "
<< bottleNum << endl;
bottleNum = 1;
uglyBeerVerse(bottleNum);
cout << endl << "bottlenNum after call: "
<< bottleNum << endl;
return 0;
}