SOURCE FILE: clownStackShell.cpp


#include<iostream>

using namespace std ;
 
void MakeOneClown () ;
void MakeBase() ;

int main()
{
  /* 
     
      Here in this main() function put code that declares variables,
      prints the information and directions, gets the input from the
      user, does the error checking, and produces the output.

      To help keep the main program uncluttered, consider utilizing
      additional functions to do some of these tasks - like a function
      to print the information and directions, and another function to
      get a value from the user.

      To print the stack of clowns, use a loop here in main() with a
      body that contains a call to the function "MakeOneClown()."

      To make the base, place a call to MakeBase() here in main().

      Here in main() don't put 'cout' statements that make parts of a
      clown or base.  Put such 'cout' statements only in the functions
      MakeOneClown() and MakeBase().

  */

}

/* ************************************************************** */
/* Inside the body of the "MakeOneClown() function below, put code to
   print one copy of the clown - just one clown.  In other words,
   code that will print this:

            0_
              \`.     ___
               \ \   / __>0
           /\  /  |/' / 
          /  \/   `  ,`'--.
         / /(___________)_ \
         |/ //.-.   .-.\\ \ \
         0 // :@ ___ @: \\ \/
           ( o ^(___)^ o ) 0
            \ \_______/ /
      jgs    '._______.'

  When you write the code, you have to be careful, because some
  of the characters in the clown are backslashes (but no double
  quotes).  Recall that those characters have to be 'escaped'
  with a backslash.  */

void MakeOneClown () 
{
       /* code for function MakeOneClown goes in here,
          between the braces. */
}

/* ************************************************************** */
/* Inside the body of the "MakeBase() function below, put code to
   print one copy of the base - just one.  In other words,
   code that will print this:

           |||||||||||||||
        |||||||||||||||||||||
     |||||||||||||||||||||||||||
  |||||||||||||||||||||||||||||||||

*/

void MakeBase()
{
       /* code for function MakeBase goes in here,
          between the braces. */
}

/* ************************************************************** */