//********************************************************
//
// Assignment 5 - Functions
//
// Name: Dani D'Oleo Pena
//
// Class: C Programming, Summer 2025
//
// Date: 06/24/2025
//
// Description: Program which determines overtime and
// gross pay for a set of employees with outputs sent
// to standard output (the screen).
//
// All functions are called by value
//
//********************************************************
#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 getOThours (float hours, float stdworkweek);
float calculateGrossPay(float hours, float wageRate, float otwageRate, float othours, float stdworkweek);
int main()
{
/* Variable Declarations */
long int clockNumber[SIZE] = {98401,526488,765349,34645,127615}; // ID
float grossPay[SIZE]; // gross pay
float hours[SIZE]; // hours worked in a given week
int i; // loop and array index
float overtimeHrs[SIZE]; // overtime hours
float wageRate[SIZE] = {10.60,9.75,10.50,12.25,8.35}; // hourly wage rate
// process each employee
for (i = 0; i < SIZE; ++i)
{
// Read in hours for employee
hours[i] = getHours (clockNumber[i]);
overtimeHrs[i] = getOThours (hours[i], STD_WORK_WEEK);
// TODO: Function call to calculate gross pay
grossPay[i] = calculateGrossPay(hours[i], wageRate[i], OVERTIME_RATE, overtimeHrs[i], STD_WORK_WEEK);
}
// print the header info
printHeader();
// print out each employee
for (i = 0; i < SIZE; ++i)
{
// Print all the employees - call by value
printEmp (clockNumber[i], wageRate[i], hours[i],
overtimeHrs[i], grossPay[i]);
} // for
return (0);
} // main
//**************************************************************
// Function: getHours
//
// Purpose: Obtains input from user, the number of hours worked
// per employee and stores the result in a local variable
// that is passed back to the calling function.
//
// Parameters: clockNumber - The unique employee ID
//
// Returns: hoursWorked - hours worked in a given week
//
//**************************************************************
float getHours (long int clockNumber)
{
float hoursWorked; // hours worked in a given week
// Read in hours for employee
printf("\nEnter hours worked by emp # %06li: ", clockNumber
); scanf ("%f", &hoursWorked
);
// return hours back to the calling function
return (hoursWorked);
} // getHours
//**************************************************************
// Function: getOTHours
//
// Purpose: Obtains number of Overtime hours based on the amount of hours worked.
//
// Parameters: hours - numbers of hours worked, stdworkweek - amount of hours worked without overtime
//
// Returns: othoursWorked - overtime hours worked in a given week
//
//**************************************************************
float getOThours (float hours, float stdworkweek)
{
float othoursWorked = hours - stdworkweek;
if (othoursWorked > 0.0) { //checks if there is overtime or not.
return (othoursWorked);
}
else {
return (0);
}
} // getOThours
//**************************************************************
// Function: calculateGrossPay
//
// Purpose: Obtains Gross pay based on wage rates
//
// Parameters: hours - numbers of hours worked, wageRate - normal wage rate, otwageRate - overtime wage rate,
// othours - numbers of overtime hours worked.
//
// Returns: grossPay - total money gained from working.
//
//**************************************************************
float calculateGrossPay(float hours, float wageRate, float otwageRate, float othours, float stdworkweek)
{
float grossPay;
if (othours != 0){ // if there is overtime calculate grosspay with overtime
grossPay = stdworkweek*wageRate + otwageRate*wageRate*othours;
}
else { // if there isn't overtime calculate grosspay without overtime
grossPay = hours*wageRate;
}
return (grossPay);
} // calculateGrossPay
//**************************************************************
// Function: printHeader
//
// Purpose: Prints the initial table header information.
//
// Parameters: none
//
// Returns: void
//
//**************************************************************
void printHeader (void)
{
printf ("\n\n*** Pay Calculator ***\n");
// print the table header
printf("\nClock# Wage Hours OT Gross\n"); printf("------------------------------------------------\n");
} // printHeader
//*************************************************************
// Function: printEmp
//
// Purpose: Prints out all the information for an employee
// in a nice and orderly table format.
//
// Parameters:
//
// clockNumber - unique employee ID
// wageRate - hourly wage rate
// hours - Hours worked for the week
// overtimeHrs - overtime hours worked in a week
// grossPay - gross pay for the week
//
// Returns: void
//
//**************************************************************
void printEmp (long int clockNumber, float wageRate, float hours,
float overtimeHrs, float grossPay)
{
// print the employee
printf("%06ld %5.2f %5.1f %5.1f %8.2f\n", clockNumber
, wageRate
, hours
, overtimeHrs
, grossPay
);
}