Question
/** * ITEC 3150 - ITEC 2140 and 2150 Review * * @author wjin * */ public class PersonTestUsingArray { /** * Method: main *
/** * ITEC 3150 - ITEC 2140 and 2150 Review * * @author wjin * */
public class PersonTestUsingArray {
/** * Method: main * @param args */ public static void main(String[] args) { //Create an array that can store five Person objects and assign it to the variable people
/* Create Person objects for the following people and * add them to the array list people. * * Id is the 1st item on each line, then first name last name and city. 1, Nana Agyeman, Buford 2, Joseph Anderson, Duluth 3, Kyle Brooks, Lawrenceville 4, Joshua Broughton, Dacula 5, Demetri Clark, Lilburn */
/* * Print the array variable people */
/* * Print the array elements using a loop. Print each object in the following format: 1: Nana Agyeman @ Buford 2: Joseph Anderson @ Duluth 3: Kyle Brooks @ Lawrenceville 4: Joshua Broughton @ Dacula 5: Demetri Clark @ Lilburn */
/* * Add another person into the array: * 6, Joni Elshani, Atlanta */
/* * Print the array elements */
/* * Remove the first element from the array: */
/* * Print all the people in the array list */
}
}
in java code
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started