Server IP : 172.16.15.8 / Your IP : 3.137.198.143 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/lmking1/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
//---------------------------------------------------------------- // CS 112 Fall 2008 // Test 2-Extra Credit // Purpose: Finds the average golf score, the winning golf score, // and the losing golf score; taken from a file. // Written by: L'Tia King // Due: 24 November 2008 //---------------------------------------------------------------- #include <iostream> #include <iomanip> using namespace std; int main () { int score, hiscore, loscore, totalscore, numscores; float avgscore; // Input the first score cin >> score; // Initialize the variables numscores = 0; totalscore = 0; hiscore = 1; loscore = 100; cout << "\n Golf Scores: \n\n"; // Loop throught the grades in the file until -1 is detected while(score > -1) { // Count the score numscores ++; // Add score to the running total totalscore += score; // Check for the highest score if (hiscore < score) hiscore = score; // Check for the lowest score if (loscore > score) loscore = score; // Display scores cout << setw(7) << score << endl; // Input the next score cin >> score; } // Calculate the average score avgscore = static_cast<float>(totalscore) / numscores; // Display the average score, the highest score and the lowest score cout << "\nThe average score is: " << avgscore; cout << "\nThe lowest score is: " << loscore; cout << "\nThe highest score is: " << hiscore << "\n\n"; return 0; }