Question: Program functionality. The program asks a user for their hourly wage and the number of hours they work per week. It then uses the SalaryCalculator

Program functionality. The program asks a user for their hourly wage and the number of hours they work per week. It then uses the SalaryCalculator object to do the monthly and yearly (annual) salary calculations and prints these results to the console. What you need to do: There are three places in the salaryCalculator class that you need to add code. They are marked by TODO in the comments (see figure 5). 1. 2. 3. Implement the constructor by initializing the two member variables. Implement the calculateAnnualSalary method. Implement the calculateMonthlysalary method. Figure 5 public SalaryCalculator ) ITODO: initialize workingWeeksPerYear to 50, monthsPe *TODO: Implement this method * This method calculates and returns the annual (yearly) * and the hours worked per week. public double calculateAnnualsalary (double hourlywage, dou return 0.0; *TODO: Implement this method * This method calculates and returns the monthly salaryb * and the hours worked per week public double calculateMonthlySalary (double hourlywage, do return 0.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
