Create an array of 3 employee objects to print the following output of 3 employee records. For full marks, use a for-each (enhanced for loop) to print the employee details.
Question 3 - [20 points] Use the following class specification on Employee:
class Employee {
private long emplNbr;
private String name;
private String employmentStatus;
private double wage;
}
Create an array of 3 employee objects to print the following output of 3 employee records. For full marks, use a for-each (enhanced for loop) to print the employee details. This would produce the following employee records:
Employee Full Name Status Salary
20204 Harry Fields FULLTIME 16.85
Employee Full Name Status Salary
92857 Jennifer Almonds FULLTIME 22.25
Employee Full Name Status Salary
42963 Sharon Culbritt PARTTIME 10.95