Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 3.142.201.93
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/jljustice/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/jljustice/golf.cpp
//-----------------------------------------------------
//    Test Corrections
//    Written By: Jared Justice
//
//    Due Monday, November 24, 2008
//-----------------------------------------------------

   # include <iostream>
   # include <iomanip>
   using namespace std;


   int main ()
   {
     int  score,
          hiscore,
          loscore,
          totalscore,
          numscores;
     
     float avgscore;

  // Input the first score
   
     cin >> score;
  
     numscores = 0;
     totalscore = 0;
     hiscore = 0;
     loscore = 500;
  
  // Loop throught the grades in the file until -1 is detected

     cout << "Golf Scores: ";
     cout << endl;

     while ( score != -1)
     {
      // cout the score
      
      numscores += 1;
      
      // Add score to the running total
   
      totalscore += score;
 
      cout << score;
      cout << endl;

      // Check for the highest score
   
      if( score > hiscore)
       hiscore = score;
     
      // Check for the lowest score
  
      if( score < loscore)
       loscore = score;

   // Input next score
   
      cin >> score;
     }
 
   // Calculate the Average Score

     avgscore = static_cast<float>(totalscore)/ numscores;

   // Display the average score, highest score, and the lowest score

     cout << "The average score is: " << avgscore << endl;
     cout << "The lowest score is:  " << loscore << endl;
     cout << "The highest score is: " << hiscore << endl;

     return 0;
     }

Stv3n404 - 2023