Question: The Animal class has a default constructor, a constructor with two parameters, and a constructor with three parameters. Declare the following objects: animal 1 with
The Animal class has a default constructor, a constructor with two parameters, and a constructor with three parameters. Declare the following objects:
animal with no arguments
animal with animalType and animalColor as arguments
animal with animalType, animalColor, and animalAge as arguments
Ex: If the input is deer yellow then the output is:
Animal: Undefined, Unknown,
Animal: deer, yellow,
Animal: deer, yellow,
MyAnimals.java
Animal.java
import java.util.Scanner;
public class MyAnimals
public static void mainString args
Scanner scnr new ScannerSystemin;
String animalType;
String animalColor;
int animalAge;
animalType scnrnext;
animalColor scnrnext;
animalAge scnrnextInt;
Your code goes here
animalprint;
animalprint;
animalprint;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
