SOURCE FILE: floorSpace01.cpp


/* 
   Program to display the floor space for a room   
   
   Initial design

*/

#include <iostream>
using namespace std ;

/* ================================== */
/* ================================== */

int main(void)   
{   
/*
   Step One: Print Directions for the user
   Step Two: Get the dimensions of the floor from the user
   Step Three: IF either dimension is not positive
                  print an error message
               OTHERWISE Compute FloorSpace as product and 
                         print the answer out for the user to see
   
   Notes on solution method:
     * Use function to print directions
     * Make a function that gets one dimension and use 
       it twice to get the dimensions of the floor
     * Use a function to calculate the floor space
     * Do the rest with explicit code in main
*/  
   return 0;
}