/**************************************************************************** * beer1.c * * Computer Science 50 * David J. Malan * * Sings "99 Bottles of Beer on the Wall." * * Demonstrates a for loop (and an opportunity for hierarchical * decomposition). ***************************************************************************/ #include #include int main(void) { // ask user for number printf("How many bottles will there be? "); int n = GetInt(); // exit upon invalid input if (n < 1) { printf("Sorry, that makes no sense.\n"); return 1; } // sing the annoying song printf("\n"); for (int i = n; i > 0; i--) { printf("%d bottle(s) of beer on the wall,\n", i); printf("%d bottle(s) of beer,\n", i); printf("Take one down, pass it around,\n"); printf("%d bottle(s) of beer on the wall.\n\n", i - 1); } // exit when song is over printf("Wow, that's annoying.\n"); return 0; }