//--------------------------------------------------------- // This program reads a file containing daily low and high // temperatures and displays the number of days, the average // low, the average high, the minimum low, and the maximum // high. // // D. Searls // YOUR NAME GOES HERE // Asbury College // Oct 2007 //--------------------------------------------------------- #include #include #include using namespace std; //--------------------------------------------------------- // readData // // Read the temperature data from a file. // // //--------------------------------------------------------- void readData() { cout << "Read Data" << endl; } //--------------------------------------------------------- // minimum // // Returns the minimum value in an array of integers. // // //--------------------------------------------------------- int minimum() { return 0; } //--------------------------------------------------------- // maximum // // Returns the maximum value in an array of integers. // // //--------------------------------------------------------- int maximum() { return 0; } //--------------------------------------------------------- // mean // // Return the mean of the values in an array of integers. // // //--------------------------------------------------------- double mean() { return 0; } //--------------------------------------------------------- // displayResults // // Display the number of days, the average low, the // average high, the minimum low, and the maximum high. // // //--------------------------------------------------------- void displayResults() { cout << "Display Results" << endl; } //********************************************************* // M A I N D R I V E R //********************************************************* int main() { readData(); displayResults(); return 0; }