fork download
  1. //********************************************************
  2. //
  3. // Assignment 7 - Structures and Strings
  4. //
  5. // Name: Megan Tetreault
  6. //
  7. // Class: C Programming, Spring 2025
  8. //
  9. // Date: March 24, 2024
  10. //
  11. // Description: Program which determines overtime and
  12. // gross pay for a set of employees with outputs sent
  13. // to standard output (the screen).
  14. //
  15. // This assignment also adds the employee name, their tax state,
  16. // and calculates the state tax, federal tax, and net pay. It
  17. // also calculates totals, averages, minimum, and maximum values.
  18. //
  19. // Call by Reference design
  20. //
  21. //********************************************************
  22.  
  23.  
  24. // necessary header files
  25. #include <stdio.h>
  26. #include <string.h>
  27. #include <ctype.h>
  28.  
  29. // define constants
  30. #define SIZE 5
  31. #define STD_HOURS 40.0
  32. #define OT_RATE 1.5
  33. #define MA_TAX_RATE 0.05
  34. #define NH_TAX_RATE 0.0
  35. #define VT_TAX_RATE 0.06
  36. #define CA_TAX_RATE 0.07
  37. #define DEFAULT_TAX_RATE 0.08
  38. #define NAME_SIZE 20
  39. #define TAX_STATE_SIZE 3
  40. #define FED_TAX_RATE 0.25
  41. #define FIRST_NAME_SIZE 10
  42. #define LAST_NAME_SIZE 10
  43.  
  44. // Define a structure type to store an employee name
  45. // ... note how one could easily extend this to other parts
  46. // parts of a name: Middle, Nickname, Prefix, Suffix, etc.
  47. struct name
  48. {
  49. char firstName[FIRST_NAME_SIZE];
  50. char lastName [LAST_NAME_SIZE];
  51. };
  52.  
  53. // Define a structure type to pass employee data between functions
  54. // Note that the structure type is global, but you don't want a variable
  55. // of that type to be global. Best to declare a variable of that type
  56. // in a function like main or another function and pass as needed.
  57. struct employee
  58. {
  59. struct name empName;
  60. char taxState [TAX_STATE_SIZE];
  61. long int clockNumber;
  62. float wageRate;
  63. float hours;
  64. float overtimeHrs;
  65. float grossPay;
  66. float stateTax;
  67. float fedTax;
  68. float netPay;
  69. };
  70.  
  71. // this structure type defines the totals of all floating point items
  72. // so they can be totaled and used also to calculate averages
  73. struct totals
  74. {
  75. float total_wageRate;
  76. float total_hours;
  77. float total_overtimeHrs;
  78. float total_grossPay;
  79. float total_stateTax;
  80. float total_fedTax;
  81. float total_netPay;
  82. };
  83.  
  84. // this structure type defines the min and max values of all floating
  85. // point items so they can be display in our final report
  86. struct min_max
  87. {
  88. float min_wageRate;
  89. float min_hours;
  90. float min_overtimeHrs;
  91. float min_grossPay;
  92. float min_stateTax;
  93. float min_fedTax;
  94. float min_netPay;
  95. float max_wageRate;
  96. float max_hours;
  97. float max_overtimeHrs;
  98. float max_grossPay;
  99. float max_stateTax;
  100. float max_fedTax;
  101. float max_netPay;
  102. };
  103.  
  104. // define prototypes here for each function except main
  105. void getHours (struct employee employeeData[], int theSize);
  106. void calcOvertimeHrs (struct employee employeeData[], int theSize);
  107. void calcGrossPay (struct employee employeeData[], int theSize);
  108. void printHeader (void);
  109. void printEmp (struct employee employeeData[], int theSize);
  110. void calcStateTax (struct employee employeeData[], int theSize);
  111. void calcFedTax (struct employee employeeData[], int theSize);
  112. void calcNetPay (struct employee employeeData[], int theSize);
  113. struct totals calcEmployeeTotals (struct employee employeeData[],
  114. struct totals employeeTotals,
  115. int theSize);
  116.  
  117. struct min_max calcEmployeeMinMax (struct employee employeeData[],
  118. struct min_max employeeMinMax,
  119. int theSize);
  120.  
  121. void printEmpStatistics (struct totals employeeTotals,
  122. struct min_max employeeMinMax,
  123. int theSize);
  124.  
  125. // Add your other function prototypes if needed here
  126.  
  127. int main ()
  128. {
  129.  
  130. // Set up a local variable to store the employee information
  131. // Initialize the name, tax state, clock number, and wage rate
  132. struct employee employeeData[SIZE] = {
  133. { {"Connie", "Cobol"}, "MA", 98401, 10.60},
  134. { {"Mary", "Apl"}, "NH", 526488, 9.75 },
  135. { {"Frank", "Fortran"}, "VT", 765349, 10.50 },
  136. { {"Jeff", "Ada"}, "NY", 34645, 12.25 },
  137. { {"Anton", "Pascal"},"CA",127615, 8.35 }
  138. };
  139.  
  140. // set up structure to store totals and initialize all to zero
  141. struct totals employeeTotals = {0,0,0,0,0,0,0};
  142.  
  143. // set up structure to store min and max values and initialize all to zero
  144. struct min_max employeeMinMax = {0,0,0,0,0,0,0,0,0,0,0,0,0,0};
  145.  
  146. // Call functions as needed to read and calculate information
  147.  
  148. // Prompt for the number of hours worked by the employee
  149. getHours (employeeData, SIZE);
  150.  
  151. // Calculate the overtime hours
  152. calcOvertimeHrs (employeeData, SIZE);
  153.  
  154. // Calculate the weekly gross pay
  155. calcGrossPay (employeeData, SIZE);
  156.  
  157. // Calculate the state tax
  158. calcStateTax (employeeData, SIZE);
  159.  
  160. // Calculate the federal tax
  161. calcFedTax (employeeData, SIZE);
  162.  
  163. // Calculate the net pay after taxes
  164. calcNetPay (employeeData, SIZE);
  165.  
  166. // Keep a running sum of the employee totals
  167. // Note: This remains a Call by Value design
  168. employeeTotals = calcEmployeeTotals (employeeData, employeeTotals, SIZE);
  169.  
  170. // Keep a running update of the employee minimum and maximum values
  171. // Note: This remains a Call by Value design
  172. employeeMinMax = calcEmployeeMinMax (employeeData,
  173. employeeMinMax,
  174. SIZE);
  175. // Print the column headers
  176. printHeader();
  177.  
  178. // print out final information on each employee
  179. printEmp (employeeData, SIZE);
  180.  
  181. // print the totals and averages for all float items
  182. printEmpStatistics (employeeTotals, employeeMinMax, SIZE);
  183.  
  184. return (0); // success
  185.  
  186. } // main
  187.  
  188. //**************************************************************
  189. // Function: getHours
  190. //
  191. // Purpose: Obtains input from user, the number of hours worked
  192. // per employee and updates it in the array of structures
  193. // for each employee.
  194. //
  195. // Parameters:
  196. //
  197. // employeeData - array of employees (i.e., struct employee)
  198. // theSize - the array size (i.e., number of employees)
  199. //
  200. // Returns: void
  201. //
  202. //**************************************************************
  203.  
  204. void getHours (struct employee employeeData[], int theSize)
  205. {
  206.  
  207. int i; // array and loop index
  208.  
  209. // read in hours for each employee
  210. for (i = 0; i < theSize; ++i)
  211. {
  212. // Read in hours for employee
  213. printf("\nEnter hours worked by emp # %06li: ", employeeData[i].clockNumber);
  214. scanf ("%f", &employeeData[i].hours);
  215. }
  216.  
  217. } // getHours
  218.  
  219. //**************************************************************
  220. // Function: printHeader
  221. //
  222. // Purpose: Prints the initial table header information.
  223. //
  224. // Parameters: none
  225. //
  226. // Returns: void
  227. //
  228. //**************************************************************
  229.  
  230. void printHeader (void)
  231. {
  232.  
  233. printf ("\n\n*** Pay Calculator ***\n");
  234.  
  235. // print the table header
  236. printf("\n--------------------------------------------------------------");
  237. printf("-------------------");
  238. printf("\nName Tax Clock# Wage Hours OT Gross ");
  239. printf(" State Fed Net");
  240. printf("\n State Pay ");
  241. printf(" Tax Tax Pay");
  242.  
  243. printf("\n--------------------------------------------------------------");
  244. printf("-------------------");
  245.  
  246. } // printHeader
  247.  
  248. //*************************************************************
  249. // Function: printEmp
  250. //
  251. // Purpose: Prints out all the information for each employee
  252. // in a nice and orderly table format.
  253. //
  254. // Parameters:
  255. //
  256. // employeeData - array of struct employee
  257. // theSize - the array size (i.e., number of employees)
  258. //
  259. // Returns: void
  260. //
  261. //**************************************************************
  262.  
  263. void printEmp (struct employee employeeData[], int theSize)
  264. {
  265.  
  266. int i; // array and loop index
  267.  
  268. // used to format the employee name
  269. char name [FIRST_NAME_SIZE + LAST_NAME_SIZE + 1];
  270.  
  271. // read in hours for each employee
  272. for (i = 0; i < theSize; ++i)
  273. {
  274. // While you could just print the first and last name in the printf
  275. // statement that follows, you could also use various C string library
  276. // functions to format the name exactly the way you want it. Breaking
  277. // the name into first and last members additionally gives you some
  278. // flexibility in printing. This also becomes more useful if we decide
  279. // later to store other parts of a person's name. I really did this just
  280. // to show you how to work with some of the common string functions.
  281. strcpy (name, employeeData[i].empName.firstName);
  282. strcat (name, " "); // add a space between first and last names
  283. strcat (name, employeeData[i].empName.lastName);
  284.  
  285. // Print out a single employee
  286. printf("\n%-20.20s %-2.2s %06li %5.2f %4.1f %4.1f %7.2f %6.2f %7.2f %8.2f",
  287. name, employeeData[i].taxState, employeeData[i].clockNumber,
  288. employeeData[i].wageRate, employeeData[i].hours,
  289. employeeData[i].overtimeHrs, employeeData[i].grossPay,
  290. employeeData[i].stateTax, employeeData[i].fedTax,
  291. employeeData[i].netPay);
  292.  
  293. } // for
  294.  
  295. } // printEmp
  296.  
  297. //*************************************************************
  298. // Function: printEmpStatistics
  299. //
  300. // Purpose: Prints out the summary totals and averages of all
  301. // floating point value items for all employees
  302. // that have been processed. It also prints
  303. // out the min and max values.
  304. //
  305. // Parameters:
  306. //
  307. // employeeTotals - a structure containing a running total
  308. // of all employee floating point items
  309. // employeeMinMax - a structure containing all the minimum
  310. // and maximum values of all employee
  311. // floating point items
  312. // theSize - the total number of employees processed, used
  313. // to check for zero or negative divide condition.
  314. //
  315. // Returns: void
  316. //
  317. //**************************************************************
  318.  
  319. void printEmpStatistics (struct totals employeeTotals,
  320. struct min_max employeeMinMax,
  321. int theSize)
  322. {
  323.  
  324. // print a separator line
  325. printf("\n--------------------------------------------------------------");
  326. printf("-------------------");
  327.  
  328. // print the totals for all the floating point fields
  329. // TODO - replace the zeros below with the correct reference to the
  330. // reference to the member total item
  331. printf("\nTotals: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  332. employeeTotals.total_wageRate,
  333. employeeTotals.total_hours,
  334. employeeTotals.total_overtimeHrs,
  335. employeeTotals.total_grossPay,
  336. employeeTotals.total_stateTax,
  337. employeeTotals.total_fedTax,
  338. employeeTotals.total_netPay);
  339. // make sure you don't divide by zero or a negative number
  340. if (theSize > 0)
  341. {
  342. // print the averages for all the floating point fields
  343. // TODO - replace the zeros below with the correct reference to the
  344. // the average calculation using with the correct total item
  345. printf("\nAverages: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  346. employeeTotals.total_wageRate/theSize,
  347. employeeTotals.total_hours / theSize,
  348. employeeTotals.total_overtimeHrs / theSize,
  349. employeeTotals.total_grossPay / theSize,
  350. employeeTotals.total_stateTax / theSize,
  351. employeeTotals.total_fedTax / theSize,
  352. employeeTotals.total_netPay / theSize);
  353. } // if
  354.  
  355. // print the min and max values
  356. // TODO - replace the zeros below with the correct reference to the
  357. // to the min member field
  358. printf("\nMinimum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  359. employeeMinMax.min_wageRate,
  360. employeeMinMax.min_hours,
  361. employeeMinMax.min_overtimeHrs,
  362. employeeMinMax.min_grossPay,
  363. employeeMinMax.min_stateTax,
  364. employeeMinMax.min_fedTax,
  365. employeeMinMax.min_netPay);
  366.  
  367. // TODO - replace the zeros below with the correct reference to the
  368. // to the max member field
  369. printf("\nMaximum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  370. employeeMinMax.max_wageRate,
  371. employeeMinMax.max_hours,
  372. employeeMinMax.max_overtimeHrs,
  373. employeeMinMax.max_grossPay,
  374. employeeMinMax.max_stateTax,
  375. employeeMinMax.max_fedTax,
  376. employeeMinMax.max_netPay);
  377.  
  378. } // printEmpStatistics
  379.  
  380. //*************************************************************
  381. // Function: calcOvertimeHrs
  382. //
  383. // Purpose: Calculates the overtime hours worked by an employee
  384. // in a given week for each employee.
  385. //
  386. // Parameters:
  387. //
  388. // employeeData - array of employees (i.e., struct employee)
  389. // theSize - the array size (i.e., number of employees)
  390. //
  391. // Returns: void
  392. //
  393. //**************************************************************
  394.  
  395. void calcOvertimeHrs (struct employee employeeData[], int theSize)
  396. {
  397.  
  398. int i; // array and loop index
  399.  
  400. // calculate overtime hours for each employee
  401. for (i = 0; i < theSize; ++i)
  402. {
  403. // Any overtime ?
  404. if (employeeData[i].hours >= STD_HOURS)
  405. {
  406. employeeData[i].overtimeHrs = employeeData[i].hours - STD_HOURS;
  407. }
  408. else // no overtime
  409. {
  410. employeeData[i].overtimeHrs = 0;
  411. }
  412.  
  413. } // for
  414.  
  415.  
  416. } // calcOvertimeHrs
  417.  
  418. //*************************************************************
  419. // Function: calcGrossPay
  420. //
  421. // Purpose: Calculates the gross pay based on the the normal pay
  422. // and any overtime pay for a given week for each
  423. // employee.
  424. //
  425. // Parameters:
  426. //
  427. // employeeData - array of employees (i.e., struct employee)
  428. // theSize - the array size (i.e., number of employees)
  429. //
  430. // Returns: void
  431. //
  432. //**************************************************************
  433.  
  434. void calcGrossPay (struct employee employeeData[], int theSize)
  435. {
  436. int i; // loop and array index
  437. float theNormalPay; // normal pay without any overtime hours
  438. float theOvertimePay; // overtime pay
  439.  
  440. // calculate grossPay for each employee
  441. for (i=0; i < theSize; ++i)
  442. {
  443. // calculate normal pay and any overtime pay
  444. theNormalPay = employeeData[i].wageRate *
  445. (employeeData[i].hours - employeeData[i].overtimeHrs);
  446. theOvertimePay = employeeData[i].overtimeHrs *
  447. (OT_RATE * employeeData[i].wageRate);
  448.  
  449. // calculate gross pay for employee as normalPay + any overtime pay
  450. employeeData[i].grossPay = theNormalPay + theOvertimePay;
  451. }
  452.  
  453. } // calcGrossPay
  454.  
  455. //*************************************************************
  456. // Function: calcStateTax
  457. //
  458. // Purpose: Calculates the State Tax owed based on gross pay
  459. // for each employee. State tax rate is based on the
  460. // the designated tax state based on where the
  461. // employee is actually performing the work. Each
  462. // state decides their tax rate.
  463. //
  464. // Parameters:
  465. //
  466. // employeeData - array of employees (i.e., struct employee)
  467. // theSize - the array size (i.e., number of employees)
  468. //
  469. // Returns: void
  470. //
  471. //**************************************************************
  472.  
  473. void calcStateTax (struct employee employeeData[], int theSize)
  474. {
  475.  
  476. int i; // loop and array index
  477.  
  478. // calculate state tax based on where employee works
  479. for (i=0; i < theSize; ++i)
  480. {
  481. // Make sure tax state is all uppercase
  482. if (islower(employeeData[i].taxState[0]))
  483. employeeData[i].taxState[0] = toupper(employeeData[i].taxState[0]);
  484. if (islower(employeeData[i].taxState[1]))
  485. employeeData[i].taxState[1] = toupper(employeeData[i].taxState[1]);
  486.  
  487. // calculate state tax based on where employee resides
  488. if (strcmp(employeeData[i].taxState, "MA") == 0)
  489. employeeData[i].stateTax = employeeData[i].grossPay * MA_TAX_RATE;
  490. else if (strcmp(employeeData[i].taxState, "NH") == 0)
  491. employeeData[i].stateTax = employeeData[i].grossPay * NH_TAX_RATE;
  492. // TODO: Fix the state tax calculations for VT and CA ... right now
  493. // both are set to zero
  494. else if (strcmp(employeeData[i].taxState, "VT") == 0)
  495. employeeData[i].stateTax = employeeData[i].grossPay * VT_TAX_RATE;
  496. else if (strcmp(employeeData[i].taxState, "CA") == 0)
  497. employeeData[i].stateTax = employeeData[i].grossPay * CA_TAX_RATE;
  498. else
  499. // any other state is the default rate
  500. employeeData[i].stateTax = employeeData[i].grossPay * DEFAULT_TAX_RATE;
  501. } // for
  502.  
  503. } // calcStateTax
  504. //*************************************************************
  505. // Function: calcFedTax
  506. //
  507. // Purpose: Calculates the Federal Tax owed based on the gross
  508. // pay for each employee
  509. //
  510. // Parameters:
  511. //
  512. // employeeData - array of employees (i.e., struct employee)
  513. // theSize - the array size (i.e., number of employees)
  514. //
  515. // Returns: void
  516. //
  517. //**************************************************************
  518.  
  519. void calcFedTax (struct employee employeeData[], int theSize)
  520. {
  521.  
  522. int i; // loop and array index
  523.  
  524. // calculate the federal tax for each employee
  525. for (i=0; i < theSize; ++i)
  526. {
  527.  
  528. // TODO: Fix the fedTax calculation to be the gross pay
  529. // multiplied by the Federal Tax Rate (use constant
  530. // provided.)
  531. employeeData[i].fedTax = employeeData[i].grossPay * FED_TAX_RATE;
  532.  
  533.  
  534. // Fed Tax is the same for all regardless of state
  535. employeeData[i].fedTax = 0;
  536.  
  537. } // for
  538.  
  539. } // calcFedTax
  540.  
  541. //*************************************************************
  542. // Function: calcNetPay
  543. //
  544. // Purpose: Calculates the net pay as the gross pay minus any
  545. // state and federal taxes owed for each employee.
  546. // Essentially, their "take home" pay.
  547. //
  548. // Parameters:
  549. //
  550. // employeeData - array of employees (i.e., struct employee)
  551. // theSize - the array size (i.e., number of employees)
  552. //
  553. // Returns: void
  554. //
  555. //**************************************************************
  556.  
  557. void calcNetPay (struct employee employeeData[], int theSize)
  558. {
  559. int i; // loop and array index
  560. float theTotalTaxes; // the total state and federal tax
  561.  
  562. // calculate the take home pay for each employee
  563. for (i=0; i < theSize; ++i)
  564. {
  565. // calculate the total state and federal taxes
  566. theTotalTaxes = employeeData[i].stateTax + employeeData[i].fedTax;
  567.  
  568. // TODO: Fix the netPay calculation to be the gross pay minus the
  569. // the total taxes paid
  570.  
  571. // calculate the net pay
  572. employeeData[i].netPay = 0;
  573.  
  574. } // for
  575.  
  576. } // calcNetPay
  577. //*************************************************************
  578. // Function: calcEmployeeTotals
  579. //
  580. // Purpose: Performs a running total (sum) of each employee
  581. // floating point member in the array of structures
  582. //
  583. // Parameters:
  584. //
  585. // employeeData - array of employees (i.e., struct employee)
  586. // employeeTotals - structure containing a running totals
  587. // of all fields above
  588. // theSize - the array size (i.e., number of employees)
  589. //
  590. // Returns: employeeTotals - updated totals in the updated
  591. // employeeTotals structure
  592. //
  593. //**************************************************************
  594.  
  595. struct totals calcEmployeeTotals (struct employee employeeData[],
  596. struct totals employeeTotals,
  597. int theSize)
  598. {
  599.  
  600. int i; // loop and array index
  601.  
  602. // total up each floating point item for all employees
  603. for (i = 0; i < theSize; ++i)
  604. {
  605. // add current employee data to our running totals
  606. employeeTotals.total_wageRate += employeeData[i].wageRate;
  607. employeeTotals.total_hours += employeeData[i].hours;
  608. employeeTotals.total_overtimeHrs += employeeData[i].overtimeHrs;
  609. employeeTotals.total_grossPay += employeeData[i].grossPay;
  610. employeeTotals.total_stateTax += employeeData[i].stateTax;
  611. employeeTotals.total_fedTax += employeeData[i].fedTax;
  612. employeeTotals.total_netPay += employeeData[i].netPay;
  613.  
  614. } // for
  615.  
  616. return (employeeTotals);
  617.  
  618. } // calcEmployeeTotals
  619.  
  620. //*************************************************************
  621. // Function: calcEmployeeMinMax
  622. //
  623. // Purpose: Accepts various floating point values from an
  624. // employee and adds to a running update of min
  625. // and max values
  626. //
  627. // Parameters:
  628. //
  629. // employeeData - array of employees (i.e., struct employee)
  630. // employeeTotals - structure containing a running totals
  631. // of all fields above
  632. // theSize - the array size (i.e., number of employees)
  633. //
  634. // Returns: employeeMinMax - updated employeeMinMax structure
  635. //
  636. //**************************************************************
  637.  
  638. struct min_max calcEmployeeMinMax (struct employee employeeData[],
  639. struct min_max employeeMinMax,
  640. int theSize)
  641. {
  642. int i; // array and loop index
  643.  
  644. // Initialize min and max to the values of the first employee
  645. employeeMinMax.min_wageRate = employeeData[0].wageRate;
  646. employeeMinMax.min_hours = employeeData[0].hours;
  647. employeeMinMax.min_overtimeHrs = employeeData[0].overtimeHrs;
  648. employeeMinMax.min_grossPay = employeeData[0].grossPay;
  649. employeeMinMax.min_stateTax = employeeData[0].stateTax;
  650. employeeMinMax.min_fedTax = employeeData[0].fedTax;
  651. employeeMinMax.min_netPay = employeeData[0].netPay;
  652.  
  653. employeeMinMax.max_wageRate = employeeData[0].wageRate;
  654. employeeMinMax.max_hours = employeeData[0].hours;
  655. employeeMinMax.max_overtimeHrs = employeeData[0].overtimeHrs;
  656. employeeMinMax.max_grossPay = employeeData[0].grossPay;
  657. employeeMinMax.max_stateTax = employeeData[0].stateTax;
  658. employeeMinMax.max_fedTax = employeeData[0].fedTax;
  659. employeeMinMax.max_netPay = employeeData[0].netPay;
  660.  
  661. // Compare the remaining employees to find new min and max values
  662. for (i = 1; i < theSize; ++i)
  663. {
  664. // Wage Rate
  665. if (employeeData[i].wageRate < employeeMinMax.min_wageRate)
  666. employeeMinMax.min_wageRate = employeeData[i].wageRate;
  667.  
  668. if (employeeData[i].wageRate > employeeMinMax.max_wageRate)
  669. employeeMinMax.max_wageRate = employeeData[i].wageRate;
  670.  
  671. // Hours Worked
  672. if (employeeData[i].hours < employeeMinMax.min_hours)
  673. employeeMinMax.min_hours = employeeData[i].hours;
  674.  
  675. if (employeeData[i].hours > employeeMinMax.max_hours)
  676. employeeMinMax.max_hours = employeeData[i].hours;
  677.  
  678. // Overtime Hours
  679. if (employeeData[i].overtimeHrs < employeeMinMax.min_overtimeHrs)
  680. employeeMinMax.min_overtimeHrs = employeeData[i].overtimeHrs;
  681.  
  682. if (employeeData[i].overtimeHrs > employeeMinMax.max_overtimeHrs)
  683. employeeMinMax.max_overtimeHrs = employeeData[i].overtimeHrs;
  684.  
  685. // Gross Pay
  686. if (employeeData[i].grossPay < employeeMinMax.min_grossPay)
  687. employeeMinMax.min_grossPay = employeeData[i].grossPay;
  688.  
  689. if (employeeData[i].grossPay > employeeMinMax.max_grossPay)
  690. employeeMinMax.max_grossPay = employeeData[i].grossPay;
  691.  
  692. // State Tax
  693. if (employeeData[i].stateTax < employeeMinMax.min_stateTax)
  694. employeeMinMax.min_stateTax = employeeData[i].stateTax;
  695.  
  696. if (employeeData[i].stateTax > employeeMinMax.max_stateTax)
  697. employeeMinMax.max_stateTax = employeeData[i].stateTax;
  698.  
  699. // Federal Tax
  700. if (employeeData[i].fedTax < employeeMinMax.min_fedTax)
  701. employeeMinMax.min_fedTax = employeeData[i].fedTax;
  702.  
  703. if (employeeData[i].fedTax > employeeMinMax.max_fedTax)
  704. employeeMinMax.max_fedTax = employeeData[i].fedTax;
  705.  
  706. // Net Pay
  707. if (employeeData[i].netPay < employeeMinMax.min_netPay)
  708. employeeMinMax.min_netPay = employeeData[i].netPay;
  709.  
  710. if (employeeData[i].netPay > employeeMinMax.max_netPay)
  711. employeeMinMax.max_netPay = employeeData[i].netPay;
  712. }
  713.  
  714. return (employeeMinMax);
  715. } // calcEmployeeMinMax
  716.  
Success #stdin #stdout 0.01s 5284KB
stdin
51.0
42.5
37.0
45.0
40.0
stdout
Enter hours worked by emp # 098401: 
Enter hours worked by emp # 526488: 
Enter hours worked by emp # 765349: 
Enter hours worked by emp # 034645: 
Enter hours worked by emp # 127615: 

*** Pay Calculator ***

---------------------------------------------------------------------------------
Name                Tax  Clock# Wage   Hours  OT   Gross   State  Fed      Net
                   State                           Pay     Tax    Tax      Pay
---------------------------------------------------------------------------------
Connie Cobol         MA  098401 10.60  51.0  11.0  598.90  29.95    0.00     0.00
Mary Apl             NH  526488  9.75  42.5   2.5  426.56   0.00    0.00     0.00
Frank Fortran        VT  765349 10.50  37.0   0.0  388.50  23.31    0.00     0.00
Jeff Ada             NY  034645 12.25  45.0   5.0  581.88  46.55    0.00     0.00
Anton Pascal         CA  127615  8.35  40.0   0.0  334.00  23.38    0.00     0.00
---------------------------------------------------------------------------------
Totals:                         51.45 215.5  18.5 2329.84 123.18    0.00     0.00
Averages:                       10.29  43.1   3.7  465.97  24.64    0.00     0.00
Minimum:                         8.35  37.0   0.0  334.00   0.00    0.00     0.00
Maximum:                        12.25  51.0  11.0  598.90  46.55    0.00     0.00