Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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.

image text in transcribed

#include #include #include using namespace std;

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 continue

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

4th Edition

0805360476, 978-0805360479

More Books

Students also viewed these Databases questions