#include // Name: Susan Rodger // // Course: CPS 6 // // Date: 9/9/96 // // Purpose: Print a Duke t-shirt and to illustrate a // modular program using functions void TurtleNeck() { cout << " ________" << endl; cout << " | | " << endl; cout << " | |" << endl; cout << " ------ ------" << endl; } void Shoulders() { cout << " / \\" << endl; cout << " / \\" << endl; } void Sleeves() { cout << " ----- -----" << endl; cout << " | |" << endl; cout << " | |" << endl; cout << " | |" << endl; cout << " ----- -----" << endl; } void Duke() { cout << " | D U K E |" << endl; } void Body() { cout << " | |" << endl; } void Bottom() { cout << " -----------------------" << endl; } int main() { TurtleNeck(); Shoulders(); Sleeves(); Duke(); Body(); Bottom(); return 0; }