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
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
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