Question: 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
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 Mai 22, then the output is:
Restaurant: Mai's Bistro Total: 22 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 Bistro"; }
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; }
c++ and please please make it correct
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
