COSC 1337 - Programming Fundamentals II
Bob Comer, Professor of Computer Studies


Assignment 10 - Payroll Version 3.0

Be sure to read through chapters 12 (strings) and 13 (files) before starting this assignment. This is another re-write of your payroll program. The major changes are:

One of the main goals of this assignment is to give you experience working with partially-filled arrays. Use an array to store the employee master data.

Important Note: When you are reading input from a file using an end-of-file loop, it is critical that the last line of the file be terminated with a newline character. The description of the end-of-file loop and all the example code in the textbook assume that the last line of input is terminated with a newline. The examples may not work correctly for files that are missing a newline at the end.

By convention all files should be terminated with a newline character.

Employee class

You will use your employee class from the previous programming assignment. Change the member variable for the employee name so that you use a C-string instead of a C++ string object. Your C-string should be able to hold names up to 20 characters in length. Then modify your member functions as required to work with the C-string.

Program input

The program input consists of two files - a master file and a transaction file. Your code must work for the 2 input files provided. You may also want to test your program with other input data.

Master file

The master file has one line of input per employee containing:

Notes:
This file contains one extra piece of data at the end of each line - a single character ('M' or 'F'). You can ignore this data.
Validation for the data in this file is done in the set member function of the Employee class.

This file is ordered by ID number. Your code should work for any number of employees up to 100 (use an end-of-file loop to read this file). You can assume that there is exactly one space between the employee ID number and the name. You can also assume that the name occupies 20 columns in the file.

Transaction file (weekly timesheet information)

The transaction file has one line for each employee who worked containing:

This file may have any number of transactions and may be in any order.

Calculations

Payroll Processing

Since the employee master information and the timecard information (hours worked) are not input in the same order, and the total number of employees likely will be different than the number of timesheets, trying to use parallel arrays for this assignment will get very tricky. A better strategy might be to:

- read the employee master information into an array (count the number of employees as you read)

- for each timecard record in the transaction file, try to look up the matching employee in the employee array and process as required.

Program output

The program output will consist of two reports:

Error and Control Report

This report can be printed on the screen or alternatively can be printed to a file.

Payroll Report

This report should be printed to a file. It should not be printed on the screen. The payroll report should be printed in a tabular (row and column) format with each column clearly labeled. Print one line for each transaction that contains:

All dollar amounts should be displayed with 2 decimal places. The decimal points should line up vertically in your columns (use the setw() manipulator when printing columns).

The final line of the payroll report should print the total amount of gross pay and total amount of net pay for the week.

Requirements/Hints:

  1. Global variables are variables that are declared outside any function. Do not use global variables in your programs. Declare all your variables inside functions
  2. You can assume that the Master file does not contain errors (error checking is done by another program). Error checking for the Transaction file is described in the Error and Control Report. You can download sample files here:
    master10.txt
    trans10.txt

    Your program must work correctly for these files.

    Maybe the best way to copy a file to your computer is to right-click on the link, then choose "Save As" or "Save Link As" from the popup menu. Optionally you may be able to open the text file in your browser and select "Save As" or "Save Page As" from your browser menu.

    If you create your own test files in a text editor, be sure to press the enter key after the last line of input and before you save your text. If you choose to copy the text from my sample file and paste it into a text editor, be sure to press the enter key after the last line of input and before you same your text.

  3. Use C-strings (not the C++ string class) to represent strings in your program.
  4. You should use a class to represent the master file information for one employee.
  5. The Payroll Report must be written to a file.
  6. The master file information should be read into an array.
  7. You do not need to store the transaction information in an array. You can read each transaction (timecard information), look up the matching employee id in the employee master array, and then calculate and print the paycheck information.
  8. Your program might be structured similar to this example program:
    itemclass.htm
  9. Notes on reading c-strings:
    The cin.getline function is first introduced in chapter 3 and then covered more thoroughly in the Files chapter. The C++ code:

    char name[21];
    cin.getline( name, 21, '\n' );

    should read the next 20 characters in the input stream, or up to the first newline character, whichever comes first, and store the characters in name followed by the null terminator character '\0'. This code works fine if you are reading a string at the end of a line. It sounds like it should also work to input a string in the middle of a line. But with Visual C++ 6.0, if this call does not encounter the newline character, the input stream will fail. I am not sure if this is a problem in other current compilers, but I do know that it used to work with older C++ compilers.

    The textbook only covers one version of the get function - the one that is used to read a single character. There is another version of get that can be used to read string into character arrays. It has exactly the same parameters as cin.getline and works similarly:

    char name[21];
    cin.get( name, 21, '\n' );

    This version of the get function will work for reading a string in the middle of a line of input.


Return to Programming Fundamentals II Home Page

Copyright: ©2013 by the Austin Community College
Department of Computer Studies. All rights reserved.
Comments to:
Bob Comer
Last updated: April 24, 2013