Question
Write a program that will read records from a file (create your data file by using data from sample below) and store them in a
Write a program that will read records from a file (create your data file by using data from sample below) and store them in a binary file. That file will then be used as input to create an output file of the information. The data file contains employee information consisting of name, social security, department ID, years employed, and salary. In addition to displaying the information of each record, the program will also calculate the average salary and years employed of all the records. This additional information is stored in the same output file.
Sample Data File: Bill Tarpon 182460678 789 8 30600 Fred Caldron 456905434 789 10 40700 Sally Bender 203932239 790 8 50000 David Kemp 568903493 790 9 60000
The output file should look like this: Name Social Security Department-ID Years-Employed Salary Bill Tarpon 182460678 789 8 30600.00 Fred Caldron 456905434 789 10 40700.00 Sally Bender 203932239 790 8 50000.00 David Kemp 568903493 790 9 60000.00 The average number of years employed is 8 The average salary is $45325.00
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started