Code:
import java.util.Scanner;
public class EmployeeTest{
public static void main(String args[]){
// Invoking methods for each object created
final double hourlyPay = 52.50;
double hWorked, wPay;
double weeklyPay=0.0;
Scanner input = new Scanner(System.in);
System.out.print("Please enter the number of hours work: ");
hWorked =
Leave a comment: