Question
C++ Below is my code and I need my output to look like the screen shot. What am I doing wrong? Please correct the code,
C++
Below is my code and I need my output to look like the screen shot. What am I doing wrong? Please correct the code, but highlight where I made mistakes.
#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
}
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