Menu Loop and Monkey Intake
My instructions were as follows:
HOWEVER
I HAVE MOST OF THE CODE COMPLETED ALREADY. I NEED HELP WITH THE PARTS IN BOLD WRITING ONLY!!!!!!!!
// Complete reserveAnimal
// You will need to find the animal by animal type and in service country
public static void reserveAnimal(Scanner scanner) {
System.out.println("The method reserveAnimal needs to be implemented");
}
// Complete printAnimals
// You will need to find the animal by animal type and in service country
// Include the animal name, status, acquisition country and if the animal is reserved.
// Remember that this method connects to three different menu items.
// based on the listType parameter
// dog - prints the list of dogs
// monkey - prints the list of monkeys
// available - prints a combined list of all animals that are
// fully trained ("in service") but not reserved
// Remember that you only have to fully implement ONE of these lists.
// The other lists can have a print statement saying "This option needs to be implemented".
// To score "exemplary" you must correctly implement the "available" list.
public static void printAnimals() {
System.out.println("The method printAnimals needs to be implemented");
}
public static void main(String[] args) {
initializeDogList();
initializeMonkeyList();
}
I ONLY NEED HELP WITH THE IN LINE COMMENTS THAT ARE HIGHLIGHTED IN BOLD. I already have most of the code completed, and the over java files (dog, monkey, recuseanimal) completed as well, and can provide them in comments if needed, the code was apparently to long to have as apart of my original question.
Thanks in advance!!!!