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.

link|improve this question
4  
asking the internet to do your homework is cheating. ask a specific question about your assignment. – Jason Apr 13 '11 at 16:15
What have you tried so far? – GregInYEG Apr 13 '11 at 16:15
I'm fairly certain this is homework. Might want to tag it as such. – Varun Madiath Apr 13 '11 at 16:16
Homework? This is obviously a job assignment: CSC 101 – Programming Assignment #9 Value: 30 points Filename: program9. – Blender Apr 13 '11 at 16:18
1  
@Robert: if you want to have more success here, you should not just paste in your entire homework assignment. rephrase the question you have into a few sentences. The shorter, the better. otherwise it will be one giant tldr, followed by downvotes. – mkoryak Apr 13 '11 at 19:12
show 4 more comments
feedback

closed as too localized by CodeByMoonlight, mkoryak, Welbog, dmckee, bmargulies Apr 15 '11 at 1:44

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

You are reading text from a file. How you interpret that text is up to you.

Edit:
Example of reading a text file here

link|improve this answer
explain? what command would i use. file.get doesn't work – Robert Apr 13 '11 at 16:40
1  
you have access to google right? – Cole W Apr 13 '11 at 16:41
i been on there all day. i been stressing trying to find somebody who can just show me an example. i could do tis if i just knew how to go bout getting the numbers and putting them in an outfile – Robert Apr 13 '11 at 16:43
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.