Question: CASE STUDY- PAYROLL SYSTEM PHASE 5- ARRAY, How do I properly do this on my Dev-C++? The purpose of this phase is to expand the
CASE STUDY- PAYROLL SYSTEM PHASE 5- ARRAY, How do I properly do this on my Dev-C++?
The purpose of this phase is to expand the payroll system to display all employee information in a tabular form by including arrays.
A) Display company title and a header that labels the output in a tabular form. Input the first name and last name of an employee.
char firstname[100][10], lastname[100][15]; or you may use #include using namespace std; string firstname[100], lastname[100]; int hw[100],empid[100];
Hint: You may want to use the following I/O manipulators.
#include , setw(15), setprecision(2) setiosflags(ios::fixed|ios::showpoint|ios::left)
Professor's PAYROLL INSTITUTE
| FIRST NAME | LAST NAME | STAT | SSN | HW | HR | OTH | OTP | REGP | GROSS | TAX | NET |
| ======== | ======== | ==== | ==== | === | === | ==== | ===== | ===== | ===== | ===== | ===== |
| John | Smith | M | 113 | 50 | 20 | 10 | 300 | 800 | 1100 | 385 | 715 |
| Jane | Dow | M | 223 | 45 | 15 | 5 | 112.5 | 675 | 787.5 | 275 | 512.5 |
I did this top part, here is my compilation:
#include B) Take advantage of arrays by breaking programs into separate units. Each unit should have a separate loop. (Do not use functions.) C) Include separate functions to read in the data, compute the gross pay, tax rate, net pay, and overtime pay for all employees, and display. I properly completed part A. How do I compile both parts B and C?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
