I know how to get Char from a file, but this one is confusing. it wants me to get numbers:
here's what i have to do:
i have to take these numbers from a file:
12345 30 2
11335 46 1
44444 40 5
15897 20 3
24681 43 2
87654 53 4
54321 47 4
11111 28 5
22222 44 1
98765 40 3
55555 42 4
76543 45 3
0
and do this:CSC 101 – Programming Assignment #9 Value: 30 points Filename: program9
Write a C++ program that will read information from an input file named employee_info.dat and that will create an output file named lnam_pay.out, where lnam corresponds to the first four letters of your last name. The output file should contain payroll information for various employees in a neat, formatted form.
Note: Copy the input file from the Blackboard Assignment Link for this assignment to the directory/folder where you will be compiling your source program. (This location is the default directory). Your output file should be written to the default directory.
Physical name of input file: employee_info.dat
The program should read from each line of the input file an employee identification number (an integer), the hours worked, and the number of dependents. Each employee is paid $10.50 per hour for regular hours and $15.25 per hour for overtime hours. From the worker’s gross pay, 8% is withheld for social security tax, 15% is withheld for federal income tax, and 7% is withheld for state income tax. If the worker has four or more dependents, then an additional $35 is withheld to cover the extra cost of medical insurance.
Your program should write to the output file the employee identification number, the gross pay, and the net pay. This process should continue until an identification number of zero is entered.
Design your output file to have a heading line and to be formatted similar to below:
Employee Deps Hours Gross Pay Net Pay
======== ==== ===== ========= =======
12345 2 30 315.00 220.50
11335 1 46 511.50 358.05
44444 5 40 420.00 259.00
etc.
Program Requirements:
Comments to include your name, class, assignment number, point value, etc. Also, use comments to explain the action of your code. Name your output file lnam_pay.out, where lnam corresponds to the first four letters of your last name. Use the setw and setprecision manipulators as well as the iosflags to format the output. Use a sentinel-controlled while loop to control the program’s execution.