Question: Write a program that will read the value of hours and wageRate of 10 employees from an input file called input.txt Now compute the salary
Write a program that will read the value of hours and wageRate of 10 employees from an input file called input.txt
Now compute the salary of each employee using the following formula:
If hours <= 40
Salary = wage rate * hours
Else
Salary = wage rate * 40 + 1.5* wage rate * (hours 40)
Display the hours worked, wage rate and salary of each employee, using a precision of 2
Output should look like:
Hours Wage Rate Salary
The results must be displayed and at the same time stored in an output file.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
