i hate programming, please help..........................
The Payroll Department keeps a list of employee information for each pay period in a text file, The format of each line of the file is the following:
, , , ,
(this is called a CSV file, comma separated value).
is a string (it might look numeric)
is a string (it might contain spaces)
is a string (it might contain spaces)
is a float
is an integer
Write a program that inputs a filename form the user and prints to the terminal a report of the wages paid to the employees for the given period. The report should be in tabular format with the appropriate header. Each line should contain an employee's full name (first name last name), the hours worked, and the wages paid for that period.
Use this "employees.csv" in a new window to test your program.
file includes:
123456, del rio, robert, 30.00, 24
123457, batista, olive, 20.00, 48
123434, chapper, kelly, 15.00, 50
324556, philip, zenob, 20.00, 30
674764, presum, trace, 32.50, 16
354635, magabi, hayman, 45.25, 45