Question: C++ Define the Restaurant class's GetName() accessor that gets data member name and the GetEmployees() accessor that gets data member employees. Ex: If the input
C++
Define the Restaurant class's GetName() accessor that gets data member name and the GetEmployees() accessor that gets data member employees.
Ex: If the input is Jen 15, then the output is:
Restaurant: Jen's Delicatessen Total: 15 employees
#include
class Restaurant { public: void SetName(string restaurantName); void SetEmployees(int restaurantEmployees); string GetName() const; int GetEmployees() const; private: string name; int employees; };
void Restaurant::SetName(string restaurantName) { name = restaurantName + "'s Delicatessen"; }
void Restaurant::SetEmployees(int restaurantEmployees) { employees = restaurantEmployees; }
/* Your code goes here */
int main() { Restaurant restaurant; string inputName; int inputEmployees;
cin >> inputName; cin >> inputEmployees; restaurant.SetName(inputName); restaurant.SetEmployees(inputEmployees);
cout << "Restaurant: " << restaurant.GetName() << endl; cout << "Total: " << restaurant.GetEmployees() << " employees" << endl;
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
