// Program one from page 49 of the book. #include using namespace std; int Square(int); int Cube (int); int main () { cout << "The square of 27 is " << Square(27) << endl; cout << "The cube of 27 is " << Cube(27) << endl; return(0); } int Square(int n) { return(n*n); } int Cube(int n) { return(n*n*n); }