A. Introduction
Now you are well equipped with the skills to create an array of 300 students, - not only their height or weight, but ALL info of these students. You define what you'd like to include in class Students, and then create an array of 300 Student objects. Each object may have a student's name, birthday, height, weight, gpa...
B. Watch (slides)
C. Try
1) Use class Person below to create an array of x persons. Prompt a user to enter x as numbers of persons to create, then input name and age of each person to fill the array.
public class Person {
private String name;
private int age;
public Person(String aName, int anAge)
{
name = aName;
age = anAge;
}
/* @return the String form of this person /
public String toString()
{
return name + " " + age;
}
public void printPerson()
{
System.out.println(this);
}
public void setName(String newName) {
name = newName;
}
public void setAge(int newAge) {
age = newAge;
}
}
2) Split the array above into two or more age groups, create a new array for each age group.
3) Create a 2-D array of Person to store different age groups: <12 years old, 12-18 years old, >18 years old. Assume each age group will have a maximum of 5 people.