// ***************************************************************** // Author: Zhixiang Chen // Class: CSCI/CMPE 1170, Spring 2009 // Lab 16: Simple modular design and functions // Date: January, 2009 // Comment: The code here is meant to be revised. // //----------------------------------------------------------------- // // This lab exercise is to show modular design to solve the problem of // drawing a person. The task can be divided into the following modules: // drawHead(), drawNeck(), drawArms(); drawBody(), and drawLegs(). // // Compile and run your program. When everything is fine, // print your .cpp file and turn it to me or the TA. // ***************************************************************** #include < iostream > #include #include < string > #include < cstring > #include < cmath> #include #include //include header file #include "lab_16_head.h" using namespace std; int main( ) { //assembly all modules together /******************************************* Complete your function calls here *******************************************/ //well done and exit return 0; }