Question
Aunt Matilda
Gray Hair
Hazel Eyes
5 feet 5 inches
She is a great cook!
Married to Uncle Harold
Your program should demonstrate that you understand how to create a class and to display information. Comments must be included that explains your code. Additional techniques from your reading, such as creating variables, should be included. You will demonstrate that you can create source code and compile code. Your assignment submittal should include your properly commented java code and the class file.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
public Person(String name, String hair_color, String eyes_color, String skill, String status, double height) {this.name = name;
this.hair_color = hair_color;
this.eyes_color = eyes_color;
this.skill = skill;
this.status = status;
this.height = height;
}
/**
* print out all attributes
*/
public void print(){
System.out.println(name);
System.out.println(hair_color + "hair");
System.out.println(height + " feet");
System.out.println(skill);
System.out.println(status);
}
}...