C++ programming assignment

computer science

Description

Design C++ program that processes a list of records stored in a text file and generates a report that shows all students' marks, average marks of students

and also their highest and their lowest marks.

The program should contain :

 string fullName to store a student's name 

int marks[4] that is an array to store student's marks
 int numofSubjects that holds the number of subjects that have been chosen
and at least the following member functions: 
 appropriate constructors (including a copy constructor) and a destructor
 setStudentData(…)
 getNumOfSubjTaken() 
 getAverageMark()


Related Questions in computer science category