Ask the user for three employees. Store the data into three employee objects (use the Employee class from the previous question). Display those employees in a table. On this question, you'll submit two files: Employee.java and some other file that has a main.
You did not define hoe Employee class looks like , so I defined my own Employee class. Nothing fancy, just two data members , a constructor and a rep function that returns an array of Strings.

Ask the user for three employees. Store the data into three employee objects (use the Employee...