subject

Calculate salary: Generalize a program with variables and input. The program below has been generalized to read a user's input value for hourlyWage.
1. Run the program. Notice the user's input value of 10 is used. Modify that input value, and run again.
2. Generalize the program to get user input values for workHoursPerWeek and workWeeksPerYear (change those variables' initializations to 0). Run the program.
3. monthsPerYear will never change, so declare that variable as final. Use the standard for naming final variables. Ex: final int MAX_LENGTH = 99. Run the program.
4. Change the values in the input area below the program, and run the program again.
import java. util. Scanner;
public class Salary {
public static void main(String[] args) {
Scanner scnr = new Scanner(System. in);
int hourlyWage;
int workHoursPerWeek;
int workWeeksPerYear;
int monthsPerYear; // FIXME: Declare as final and use standard naming
int annualSalary;
int monthlySalary;
monthsPerYear = 12;
System. out. println("Enter hourly wage: ");
hourlyWage = scnr. nextInt();
// FIXME: Get user input values for workHoursPerWeek and workWeeksPerYear
workHoursPerWeek = 40;
workWeeksPerYear = 50;
annualSalary = hourlyWage * workHoursPerWeek * workWeeksPerYear;
System. out. print("Annual salary is: ");
System. out. println(annualSalary);
// FIXME: Change monthsPerYear to the final variable that uses the standard naming
monthlySalary = (hourlyWage * workHoursPerWeek * workWeeksPerYear) / monthsPerYear;
System. out. print("Monthly salary is: ");
System. out. println(monthlySalary);
}
}

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 02:30
Experimental data that is expressed using numbers is said to be
Answers: 1
question
Computers and Technology, 23.06.2019 08:30
Based on your knowledge of a good network, describe what you think is a perfect network would be. what kind of information and resources could users share on this network. what would the network administrator do? what kind of communication would be used?
Answers: 1
question
Computers and Technology, 23.06.2019 22:20
If i uninstall nba 2k 19 from my ps4 will my career be gone forever?
Answers: 2
question
Computers and Technology, 24.06.2019 01:30
Hazel has just finished adding pictures to her holiday newsletter. she decides to crop an image. what is cropping an image?
Answers: 1
You know the right answer?
Calculate salary: Generalize a program with variables and input. The program below has been genera...
Questions
question
Mathematics, 20.04.2021 21:10
question
Biology, 20.04.2021 21:10
question
Mathematics, 20.04.2021 21:10
Questions on the website: 13722362