It's a fun program to make, I am just short on time.. import java.util.Scanner; class Employee { private final String firstName; private final String lastName; private final String socialSecurityNumber; public Employee(String f, String l, String ssn){ this.firstName = f; this.lastName = l; this.socialSecurityNumber = ssn; } public String getFirstName(){ return this.firstName; } public String getLastName(){ return this.lastName; } public String getSocialSecurityNumber(){ return this.socialSecurityNumber; } public String toString(){ return String.format("%s: %s %s%n%s: %s", "employee", getFirstName(), getLastName(), "social security number", getSocialSecurityNumber()); } } Create an HourlyEmployee class that inherits from Employee (I have the code copied below). Remember, HourlyEmployees get paid an hourly wage with time-and-a-half—1.5 times the hourly wage—for hours worked over 40 hours. Your HourlyEmployee class should have: two new instance variables: hours, which represents the hours worked, and wage, which represents the employee's pay per hour. Both are doubles. a constructor that takes the arguments first name, last name, social security number, hourly wage, and the number of hours worked. accessors and mutators: The getWage and getHours methods that return the wage and hours values respectively The setWage method should ensure that the wage is nonnegative The setHours method should ensure that the value of hours is between 0 and 168 (the number of hours in a week) an earnings method that returns the money earned by the employee this week, a toString method that returns information about the employee in the form of a String. Create a Driver class with a main method that prompts the user to enter a first name, last name, social security number, hours, and wage for an employee. Then, the program should create an HourlyEmployee object and use its toString method to print information about it.
It's a fun program to make, I am just short on time..
import java.util.Scanner;
class Employee {
private final String firstName;
private final String lastName;
private final String socialSecurityNumber;
public Employee(String f, String l, String ssn){
this.firstName = f;
this.lastName = l;
this.socialSecurityNumber = ssn;
}
public String getFirstName(){
return this.firstName;
}
public String getLastName(){
return this.lastName;
}
public String getSocialSecurityNumber(){
return this.socialSecurityNumber;
}
public String toString(){
return String.format("%s: %s %s%n%s: %s",
"employee", getFirstName(), getLastName(),
"social security number", getSocialSecurityNumber());
}
}
Create an HourlyEmployee class that inherits from Employee (I have the code copied below). Remember, HourlyEmployees get paid an hourly wage with time-and-a-half—1.5 times the hourly wage—for hours worked over 40 hours.
Your HourlyEmployee class should have:
- two new instance variables: hours, which represents the hours worked, and wage, which represents the employee's pay per hour.
- Both are doubles.
- a constructor that takes the arguments first name, last name, social security number, hourly wage, and the number of hours worked.
- accessors and mutators:
- The getWage and getHours methods that return the wage and hours values respectively
- The setWage method should ensure that the wage is nonnegative
- The setHours method should ensure that the value of hours is between 0 and 168 (the number of hours in a week)
- an earnings method that returns the money earned by the employee this week,
- a toString method that returns information about the employee in the form of a String.
Create a Driver class with a main method that prompts the user to enter a first name, last name, social security number, hours, and wage for an employee. Then, the program should create an HourlyEmployee object and use its toString method to print information about it.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images