#include using namespace std ; int main() { const int NUM = 5; // Number of students float grades[NUM]; int count; // Input the grades. for (count = 0; count < NUM ; count++) { cout << "Enter the grade for student" << (count+1) << ":" ; cin >> grades[count]; cout << endl; } // Display the contents of the array. cout << "The grades you entered are:"; for (count = 0; count < NUM ; count++) cout << " " << grades[count]; cout << endl; return 0; }