// file: xmasCarol.cpp
// by: Dawn Lawrie
// date: September 24, 2003

// Outline for solving problem 2.64 - "The Twelve Days of Christmas song"
// The song can be found at www.12days.com/library/carols/12daysofxmas.htm

int main() {

  // loop through all the days
  {
    // print out the first part that all verses begin with

    // Use a switch statement to print the nth day

    // Print the remainder of that line and then next line which
    // all verses have in common

    // Use a switch statement to print the recital of the days
    // Hint: have the largest day as the first case and allow cases
    //       to fall into the next case when appropriate

  }

  return 0;
}
