Question
C++ My code is below and I am getting error messages when I try to run the program. Here is the programming challenge: Here is
C++
My code is below and I am getting error messages when I try to run the program.
Here is the programming challenge:
Here is what it should look like:
It must look exactly like this, but I cannot get my program to run it has too many errors. Please see my code below. If you could please highlight the errors I made and explain what I did wrong.
#include
class Employee { private: string name; int idNumber; string department; string position; public: Employee(string n, int i, string d, string p); Employee(); Employee(string n, int i);
string getdepartment() { return department; } string getname() { return name; }
int getidNumber() { return idNumber; }
string getposition() { return position; } void setdepartment(string d) { department = d; }
void setposition(string d) { position = d; } void setname(string d) { name = d; } void setidNumber(int d) { idNumber = d; } };
Employee::Employee(string n, int i, string d, string p) { name = n; idNumber = i; department = d; position = p; } Employee::Employee(string n, int i) { name = n; idNumber = i; } Employee::Employee() { name = ""; idNumber = 0; department = ""; position = ""; } void displayEmployee(Employee); int main() {
Employee e1("Susan Mayers", 47899, "Accounting", "Vice President"); Employee e2("Mark Jones", 39119, "IT", "Programmer"); Employee e3("Joy Rogers", 81774, "Manufacturing", "Engineer"); cout
return 0; } void displayEmployee(Employee e) { cout
}
2. Employee Class Write a class named Employee that has the following member variables: name. A string that holds the employee's name. idNumber. An int variable that holds the employee's ID number. department. A string that holds the name of the department where the employee works. . position. A string that holds the employee's job title. The class should have the following constructors: A constructor that accepts the following values as arguments and assigns them to the appropriate member variables: employee's name, employee's ID number, depart- ment, and position. A constructor that accepts the following values as arguments and assigns them to the appropriate member variables: employee's name and ID number. The department and position fields should be assigned an empty string(""). A default constructor that assigns empty strings ("") to the name, department, and position member variables, and 0 to the idNumber member variable. Write appropriate mutator functions that store values in these member variables and accessor functions that return the values in these member variables. Once you have written the class, write a separate program that creates three Employee objects to hold the following data. Name Susan Meyers Mark Jones Joy Rogers ID Number 47899 39119 81774 Department Accounting IT Manufacturing Position Vice President Programmer Engineer The program should store this data in the three objects and then display the data for each employee on the screen. C:\Users\davyn\Documents\courses_troy\l_2013\C++\Hom Name : Susan Meyers ID Number: 47899 Department: Accounting Position: Vice President Name : Mark Jones ID Number: 39119 Department: IT Position: Programmer Name : Joy Rogers ID Number: 81774 Department: Manufacturing Position: Engineer Press any key to continueStep 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