Project – Mesozoic Eden assistant
This is going to be our biggest project so far. So, buckle up!
Let’s start with a high-level description. The Mesozoic Eden assistant is an interactive console application that assists in managing a dinosaur park. The assistant should have features to do the following:
- Add or remove dinosaurs
- Check the park’s opening hours
- Greet guests and provide park information
- Track visitor counts to ensure the park isn’t overcrowded
- Manage park staff details
Since we won’t let you drown, if you need it, here is a step-by-step guide. A starting project will follow these steps:
- Create a data structure: Create the necessary classes for
Dinosaur
,Guest
, andEmployee
. Include appropriate properties and methods. - Initialize the data: You can choose to hardcode initial data or provide a mechanism to input data using the
Scanner
class. - Implement interaction: Implement a simple console...