SOURCE FILE: headStackSkeleton.cpp


#include<iostream>

using namespace std ;

void MakeOneHead () ;
void MakeBase() ;

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

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

     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 head or
     base.  Put such 'cout' statements only in the functions MakeOneHead() and
     MakeBase().

  */

}

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

     |||||||/////////
     |              |
     |              |
     |   O      O   |
     |              |
    _|              |_
   |_                _|
     |   --------   |
     |              |
                               
*/
void MakeOneHead ()
{

}

/* ************************************************************** */
/* 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()
{

}

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