Question
I have to write a c++ program using classes and arrays: This is the program: We want to create a class called Course , which
I have to write a c++ program using classes and arrays:
This is the program:
We want to create a class called Course, which represents the course offered at ECE. A course is defined with the following attributes: code (string), name (string), description (string), and a list of students registered in the course (array of type Student from previous question). You can assume that a course cannot have more than 20 registered students. The member functions of the class Course must perform the following operations:
- Return the course code,
-Return the course name
-Modify the course name
-Return the course description
-Modify the course description
-Add a student to the course
-Remove student from a course
-Search if a student with a certain id number is registered in the course
-Output list of student
-Output the number of registered students
Test your class by prompting the user to enter information about one course and four students. Create the course object four objects of the class Students. Register the students in the course. Test the member functions of the class.
Deliverables:
-A file called student.h that contains the specification of the class.
-A file called student.cpp that contains the implementation of the member functions of the class.
-A file called course.h that contains the specification of the class.
-A file called course.cpp that contains the implementation of the member functions of the class.
-A file called testcourse.cpp that contains the main function.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started