Question: C++ Design a class called Cook. The class should keep the following information in: Name (a string) Hire date (a string MM-DD-YYYY) Next, write a

C++

Design a class called Cook. The class should keep the following information in:

Name (a string) Hire date (a string MM-DD-YYYY)

Next, write a class called FastFoodCook that is derived from the Cook class. The FastFoodCook class should have a member variable to hold the following information: Shift (an int)

The workday is divided into two shifts: day and night. The shift variable will hold an integer value representing the shift that the employee works. The day shift is shift 1, and the night shift is shift 2.

Demonstrate the classes by writing a program that uses a FastFoodCook object. The code should prompt the user for the number of workers to be entered. Next, the program should prompt the user to enter the info for each FastFoodCook object (Hire date and shift) and store them in a container.

Finally, the program should iterate your container and display the name of all cooks, that work the day shift, and were hired before year 2019.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!