C++ float type Computes a grade average. Read the grade from user

Description

C++ float type Computes a grade average. Read the grade from user

#include <iostream>
using namespace std;
#include <iomanip.h>
int main()/*  ww w. j av a 2s .c o m*/
{
   float grade, avg;
   float total=0.0;
   int num;                 
   int loopvar;             

   cout << "How many students are there? ";
   cin >> num;     // Get total number to enter
   for (loopvar=1; loopvar<=num; loopvar++)
   {
      cout << "\nWhat is the next student's grade? ";
      cin >> grade;
      total += grade;
   }     // Keep a running total
   avg = total / num;
   cout << "\n\nThe average of this class is " << setprecision(1) << avg;
   return 0;
}



PreviousNext

Related