Project – Dino tracker
Safety always comes first. That’s why keeping track of all our dinosaur residents is of utmost importance. The park managers need to have an easy-to-use system for managing information about their slightly exotic pets.
For this project, you’ll be creating a Dino tracker. This is a simple tracking system that maintains records of each dinosaur’s name, age, species, and enclosure number. This will be done using fixed arrays – four arrays in total, one for each attribute.
Assume you have room for 10 dinosaurs in your park for now, so each array should have a length of 10. Each dinosaur will correspond to an index in the array. For example, if the dinosaur “Rex” is in the first position of the name array, his age, species, and enclosure number will also be in the first position of their respective arrays.
You’re going to print information about all the dinosaurs and print their average age and weight...