JAVA PROGRAMMING Write a program that models an employee. An employee has an emp
ID: 3678376 • Letter: J
Question
JAVA PROGRAMMING
Write a program that models an employee. An employee has an employee number, a name, an address, and a hire date. A name consists of a first name and a last name. An address consists of a street, a city, a state (2 characters), and a 5-digit zip code. A date consists of an integer month, day and year. All fields are required to be non-blank. The Date fields should be reasonably valid values (ex. month 1-12, day 1-31, year > 1900 and < 2020). Issue appropriate error messages when incorrect data is entered.
Create an Employee, a Name, an Address, and a Date classes in your solution. You may use the Date class from the lectures or define your own. The Java-supplied Date class cannot be used. Provide appropriate class constructors, getter methods, setter methods, toString() and any other methods you think are necessary. To keep things simple, your classes don’t need to do any editing of data. The classes should not do any direct user input/output. All user input/output will be done in the main method
. Your program should prompt the user to enter data for several employees,store the data in an array of type Employee, and then display the data.
Explanation / Answer
public class EmployeeProgram { public static void main (String[] args) { int i = Input.getInt ("How many employees would you like to enter? "); int j; Employee [] dbase = new Employee [i]; for (j = 0; jRelated Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.