Question: ANSWER IN C++ Consider a text file named employees.txt. The file contains data organized according to the following format: John Smith 10 15 Sarah Johnson
ANSWER IN C++
Consider a text file named employees.txt. The file contains data organized according to the following format:
John Smith 10 15
Sarah Johnson 47 12
Mary Taylor 27 13
Jimmy Stewart 25 8
For instance, John is the first name, Smith is the last name, 10 is the number of hours per week, and 15 is the hourly rate.
Write a program that computes the weekly salary of each employee. Any hours > 40 are paid at time-and-a-half. The program prints the last name, first name, and weekly salary of each employee into a file named results.txt. You must use a function to read/process the data from the input file. All files must be opened in main and passed to this function as parameters.
The contents of both files must be copied into your report as snippets
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
