// FILE: DispInst.cpp // DISPLAYS INSTRUCTIONS TO THE USER OF AREA/CIRCUMFERENCE // PROGRAM void instruct_user () { cout << "This program computes the area and " << endl; cout << "circumference of a circle. " << endl << endl; cout << "To use this program, enter the radius of the " << endl; cout << "circle after the prompt" << endl; endl; cout << " Enter the circle radius: " << endl << endl; cout << "The circumference will be computed in the same " << endl; cout << "units of measurement as the radius. The area " << endl; cout << "will be computed in the same units squared." << endl << endl; } // end instruct_user