C++ while statement and calculate average and total

Description

C++ while statement and calculate average and total

#include <iostream>
#include <iomanip>
using namespace std;
int main()/*from   www  .  j  av  a  2 s.  co  m*/
{
   const int MAXNUMS = 4;
   int count;
   double num, total, average;
   cout << "\nThis program will ask you to enter " << MAXNUMS << " numbers.\n";
   count = 1;
   total = 0;
   while (count <= MAXNUMS)
   {
      cout << "Enter a number: ";
      cin  >> num;
      total = total + num;
      count++;
   }
   count--;
   average = total / count;
   cout << "\nThe average of the numbers is " << average << endl;
   return 0;
}



PreviousNext

Related