Question: C++ Please, commenting is appreciated, Screen shot out put please Suppose you need to process course information. Each course has a name and a mber
C++ Please, commenting is appreciated, Screen shot out put please
Suppose you need to process course information. Each course has a name and a mber of students who take the course. You should be able to add/drop a student to/from the course. You can use a class to model the courses:. Implement the Course class in three Course -courseName: string -students: string The name of the course. An array of students who take the course, students is a pointer for the array. The number of students (default:0) The maximum number of students allowed for the course. -numberofStudents: int -capacity: int +Course(courseName: string&, capacity: int) Creates a Course with the specified name and maximum +-CourseCO +getCourseNameO: string const +addStudent (name: string&): void +dropStudent (name: string&): void +getStudentsO: string const +getNumberOfStudentsO: int const number of students allowed Destructor Returns the course name. Adds a new student to the course Drops a student from the course. Returns the array of students for the course. Returns the number of students for the course
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
