// FILE: SumNStub.cpp // COMPUTES SUM OF DATA - stub #include double compute_sum (int num_items) // IN: number of data items // Pre: num_items is assigned a value. // Post: num_items data items read; their sum is stored in sum. // Returns: Sum of all data items read if num_items >= 1; // otherwise 0.0. { cout << "Function compute_sum entered" << endl; return 100.0; } // end compute_sum stub