Good day, this is the second time of posting the same question. I tried to run t
ID: 3714267 • Letter: G
Question
Good day, this is the second time of posting the same question. I tried to run the first answered on c++ but its complaining different kind of error. Please run it before posting the answer back.. many thanks
Please Write all the program in C++...
Design the following classes in C++. Person class is the base class for other classes.
Person – A Person contains a first name, last name, street address, zip code, and phone number. The class also includes a method that sets each data field, using a series of output/input commands and a display method that displays all of a Person’s information on a multiple lines at the command line on the screen.
Student – Student descends from Person. In addition to the fields available in Person, a Student contains a major field of study and a grade point average, as well as methods that override the Person methods to accept and display these additional facts.
CollegeEmployee – A CollegeEmployee descends from Person. A CollegeEmployee also includes a Social Security number, an annual salary, and a department name, as well as methods that override the Person methods to accept and display all CollegeEmployee data.
Faculty – Faculty descends from CollegeEmployee. This class has an array of two students and also includes a Boolean field that indicates whether the Faculty member is tenured, as well as methods that override the CollegeEmployee methods to accept and display this additional piece of information.
Write an application that declares an array of four “regular” CollegeEmployees, and three Faculty. Prompt the user – using a menu to specify which type of person’s data will be entered (‘C’, or ‘F’), or allow the user to quit (‘Q’). While the user chooses to continue (that is, does not quit), accept data entry for the appropriate type of Person. If the user attempts to enter data for more than four CollegeEmployees, or three Faculty, display an error message. When the user quits, display a report on the screen listing each group of Persons under the appropriate heading “College Employees,” or “Faculty.” If the user has not entered data for one or more types of Persons during a session, display an appropriate message under the appropriate heading.
// Submit source code, executable and screen shots showing program executing.
Sample data:
CollegeEmp("Nicole","Eweman", "120 Amanda Cir, Austin, TX", 77036, 713-718-7902, 123456789, 45000, "Police");
Faculty ("Dr. Indiana", "Jones", "123 Elm street, Austin, TX", 77036, 713-718-7902, 123456789, 90000,"ARCHEOLOGY", true);
Faculty ("James", "Stock", "120 Amanda Cir, Austin, TX", 77036, 713-718-7902, 123456789, 75000,"ARCHEOLOGY", false);
Student ("Thomas", "Cruise", "120 Amanda Cir, Austin, TX", 77036, 713-718-7902,"COMPUTER_SCIENCE", 3.5);
Student ("Sharon", "Rock", "120 Almeda Rd, Alvinn, TX", 77036, 713-718-7902,"BIOLOGY", 3.0);
Explanation / Answer
#include <iostream>
#include <conio.h>
using namespace std;
class person
{
char name[100],address[100],zip[10],gender[10];
int age;
public:
void getdata()
{
cout<<"FirstName: ";
fflush(stdin); /*clears input stream*/
gets(name);
cout<<"Address";
cin>>address;
cout<<"zip";
cin>>zip;
cout<<"Age: ";
cin>>age;
cout<<"Gender: ";
cin>>gender;
}
void display()
{
cout<<"Name: "<<name<<endl;
cout<<"Age: "<<age<<endl;
cout<<"Gender: "<<gender<<endl;
cout<<"Address:"<<address<<endl;
cout<<"zip:"<<zip<<endl;
}
};
class student: public person
{
char institute[100], departmentname[20];
public:
void getdata()
{
person::getdata();
cout<<"Name of College: ";
fflush(stdin);
gets(institute);
cout<<"Departmentname: ";
cin>>departmentname;
}
void display()
{
person::display();
cout<<"Name of College: "<<institute<<endl;
cout<<"Departmentname: "<<departmentname<<endl;
}
};
class employee: public person
{
char company[100];
float salary;
public:
void getdata()
{
person::getdata();
cout<<"Name of Company: ";
fflush(stdin);
gets(company);
cout<<"Salary: Rs.";
cin>>salary;
}
void display()
{
person::display();
cout<<"Name of Company: "<<company<<endl;
cout<<"Salary: Rs."<<salary<<endl;
}
};
int main()
{
student s;
employee e;
cout<<"Student"<<endl;
cout<<"Enter data"<<endl;
s.getdata();
cout<<endl<<"Displaying data"<<endl;
s.display();
cout<<endl<<"Employee"<<endl;
cout<<"Enter data"<<endl;
e.getdata();
cout<<endl<<"Displaying data"<<endl;
e.display();
getch();
return 0;
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.