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