For this exercise, you should strive to avoid redundant code.
Write a main method that will ask the user to enter a type of pet.
If the user enters "dog", then ask him to enter the number of cats it has eaten this year.
If the user enters "cat", ask him to enter the number of dogs it has scratched this year.
if the user enters "cockatiel", ask him to enter BOTH the number of cats it has eaten this year
AND the number of dogs it has scratched this year.
If the user enters anything else (not dog, cat, or cockatiel), tell him you have no
further questions, and terminate the program.
If the user DID enter one of the three valid species (dog, cat, cockatiel) then print out
a report in the following format:
Species: dog
Number of cats eaten: 54
Number of dogs scratched: 0