Question: Here is the Person class: #include #include using namespace std; class Person { private : string Name; string Campus; public : void setName(string Name) {

 Here is the Person class: #include #include using namespace std; class

Here is the Person class:

#include  #include  using namespace std; class Person { private: string Name; string Campus; public: void setName(string Name) { this->Name = Name; } void setCampus(string Campus) { this->Campus = Campus; } void display() { cout int main() { Person people[5]; people[0].setName("david");people[0].setCampus("MIT"); people[1].setName("brendon");people[1].setCampus("Harvard"); people[2].setName("nick"); people[2].setCampus("standford"); for(int i = 0; i return 0; }

Create a C++ program (3 points): o At the top of the file include the following comments . Your name .The purpose (core concept found below) of the program . The date created o Using the Person class from Assignment 12 - Modify the Person class -Set all variables so they are accessible by the Person class and all sub classes (not by any other class or program) - Create a Student class - Student inherits from Person .Add variables for ID and major. Set all variables so they are only accessible from the Student class ID should be of type int - Add set functions for ID and major. Set the accessiblity so they can be accessed from anywhere - Add a function to display all information for the Student. This includes information inherited from Person. Create a Staff class - Staff inherits from Person - Add variables for ID and department. Set all variables so they are only accessible from the Staff class ID should be of type string Add set functions for ID and department. Set the accessibility so they can be accessed from anywhere - Add a function to display all information for the Staff member. This includes informatino inherited from Person . In main -Create one ojbect of type Student and one object of type Staff -Gather all input for Student (name, campus, ID, major) from the user and use the set functions to set the values for the object. - Display the information for the student. Gather all input for the staff member (name, campus, ID, department) from the user and use the set functions to set the values for the object. - Display the information for the staff member o Compile and run your code Create a C++ program (3 points): o At the top of the file include the following comments . Your name .The purpose (core concept found below) of the program . The date created o Using the Person class from Assignment 12 - Modify the Person class -Set all variables so they are accessible by the Person class and all sub classes (not by any other class or program) - Create a Student class - Student inherits from Person .Add variables for ID and major. Set all variables so they are only accessible from the Student class ID should be of type int - Add set functions for ID and major. Set the accessiblity so they can be accessed from anywhere - Add a function to display all information for the Student. This includes information inherited from Person. Create a Staff class - Staff inherits from Person - Add variables for ID and department. Set all variables so they are only accessible from the Staff class ID should be of type string Add set functions for ID and department. Set the accessibility so they can be accessed from anywhere - Add a function to display all information for the Staff member. This includes informatino inherited from Person . In main -Create one ojbect of type Student and one object of type Staff -Gather all input for Student (name, campus, ID, major) from the user and use the set functions to set the values for the object. - Display the information for the student. Gather all input for the staff member (name, campus, ID, department) from the user and use the set functions to set the values for the object. - Display the information for the staff member o Compile and run your code

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!