//preprocessor directives #include using namespace std; // function prototypes // main function int main() { // Parameter Declarations // LOGO cout << "----------------------------------------------------------" << endl; cout << " CS135 Lab Quiz 2: Area Difference Computation " << endl; cout << " By XXX XXXXX " << endl; cout << "----------------------------------------------------------" << endl; cout << endl; // Get Inputs // Do computations by calling functions // Print Outputs system("PAUSE"); return 0; }