#include <stdio.h>
// constants
#define SIZE 5
#define OVERTIME_RATE 1.5f
#define STD_WORK_WEEK 40.0f
// function prototypes
float getHours(long int clockNumber);
void printHeader(void);
void printEmp(long int clockNumber, float wageRate, float hours,
float overtimeHrs, float grossPay);
float calcOvertimeHrs(float hours);
float calcGrossPay(float hours, float wageRate, float overtimeHrs);
int main()
{
/* Variable Declarations */
long int clockNumber[SIZE] = {98401, 526488, 765349, 34645, 127615};
float wageRate[SIZE] = {10.60, 9.75, 10.50, 12.25, 8.35};
float hours[SIZE];
float overtimeHrs[SIZE];
float grossPay[SIZE];
int i;
// process each employee
for (i = 0; i < SIZE; ++i)
{
// Read in hours for employee
hours[i] = getHours(clockNumber[i]);
// Calculate overtime hours
overtimeHrs[i] = calcOvertimeHrs(hours[i]);
// Calculate gross pay
grossPay[i] = calcGrossPay(hours[i], wageRate[i], overtimeHrs[i]);
}
// print the header info
printHeader();
// print out each employee
for (i = 0; i < SIZE; ++i)
{
printEmp(clockNumber[i], wageRate[i], hours[i],
overtimeHrs[i], grossPay[i]);
}
return 0;
}
//**************************************************************
// Function: getHours
// Purpose: Prompts user for hours worked by a specific employee
//**************************************************************
float getHours(long int clockNumber)
{
float hoursWorked;
printf("\nEnter hours worked by emp # %06li: ", clockNumber
); scanf("%f", &hoursWorked
); return hoursWorked;
}
//**************************************************************
// Function: calcOvertimeHrs
// Purpose: Calculates overtime hours worked in a week
//**************************************************************
float calcOvertimeHrs(float hours)
{
if (hours > STD_WORK_WEEK)
return hours - STD_WORK_WEEK;
else
return 0.0f;
}
//**************************************************************
// Function: calcGrossPay
// Purpose: Calculates total gross pay including overtime
//**************************************************************
float calcGrossPay(float hours, float wageRate, float overtimeHrs)
{
float grossPay;
if (hours > STD_WORK_WEEK)
{
grossPay = (STD_WORK_WEEK * wageRate) +
(overtimeHrs * wageRate * OVERTIME_RATE);
}
else
{
grossPay = hours * wageRate;
}
return grossPay;
}
//**************************************************************
// Function: printHeader
// Purpose: Prints the initial table header information
//**************************************************************
void printHeader(void)
{
printf("\n\n*** Pay Calculator ***\n"); printf("\nClock# Wage Hours OT Gross\n"); printf("-----------------------------------------\n"); }
//**************************************************************
// Function: printEmp
// Purpose: Prints a single employee’s payroll information
//**************************************************************
void printEmp(long int clockNumber, float wageRate, float hours,
float overtimeHrs, float grossPay)
{
printf("%06li %5.2f %5.1f %5.1f %8.2f\n", clockNumber, wageRate, hours, overtimeHrs, grossPay);
}