����� �infile.open("data.txt");
����� �if (!infile)
����� �{
���������� �cout << "Error opening file!" << endl;
���������� �exit(1);
����� �}
����� �
����� �//set the name of the classGrades object intro to CSC126
����� �
����� //set the name of the object intermediate to CSC211
����� �
����� �
����� �intermediate.setNumStudents(4);
����� �//input the grades for intermediate from a file
����� �//print the intermediate grades
����� �//print the average of the intermediate grades
�����
}
void classGrades::printlist() const
{
����� int i;
����� cout << "***" << name << "***" << numStudents<< endl;
����� for (i =0; i < numStudents; i++)
���������� �cout << i << ' ' << gradeList[i] << endl;
}
void classGrades::inputGrades(ifstream & in )
���������� �{
���������������� �int i;
���������������� �for (i = 0; i < numStudents; i++)
����� ���������������� �in >> gradeList[i];
���������� �}
double classGrades::returnAvg() const
���������� �{
���������������� �int i;
���������������� �double average;
���������������� �double sum = 0;
���������������� �//write code to return the average