fork download
  1. //********************************************************
  2. //
  3. // Assignment 7 - Structures and Strings
  4. //
  5. // Name: Cooper Lefevra
  6. //
  7. // Class: C Programming, Spring 2025
  8. //
  9. // Date: 3/29/25
  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. // necessary header files
  24. #include <stdio.h>
  25. #include <string.h>
  26. #include <ctype.h>
  27.  
  28. // define constants
  29. #define SIZE 5
  30. #define STD_HOURS 40.0
  31. #define OT_RATE 1.5
  32. #define MA_TAX_RATE 0.05
  33. #define NH_TAX_RATE 0.0
  34. #define VT_TAX_RATE 0.06
  35. #define CA_TAX_RATE 0.07
  36. #define DEFAULT_TAX_RATE 0.08
  37. #define NAME_SIZE 20
  38. #define TAX_STATE_SIZE 3
  39. #define FED_TAX_RATE 0.25
  40. #define FIRST_NAME_SIZE 10
  41. #define LAST_NAME_SIZE 10
  42.  
  43. // Define a structure type to store an employee name
  44. // ... note how one could easily extend this to other parts
  45. // parts of a name: Middle, Nickname, Prefix, Suffix, etc.
  46. struct name
  47. {
  48. char firstName[FIRST_NAME_SIZE];
  49. char lastName [LAST_NAME_SIZE];
  50. };
  51.  
  52. // Define a structure type to pass employee data between functions
  53. // Note that the structure type is global, but you don't want a variable
  54. // of that type to be global. Best to declare a variable of that type
  55. // in a function like main or another function and pass as needed.
  56. struct employee
  57. {
  58. struct name empName;
  59. char taxState [TAX_STATE_SIZE];
  60. long int clockNumber;
  61. float wageRate;
  62. float hours;
  63. float overtimeHrs;
  64. float grossPay;
  65. float stateTax;
  66. float fedTax;
  67. float netPay;
  68. };
  69.  
  70. // this structure type defines the totals of all floating point items
  71. // so they can be totaled and used also to calculate averages
  72. struct totals
  73. {
  74. float total_wageRate;
  75. float total_hours;
  76. float total_overtimeHrs;
  77. float total_grossPay;
  78. float total_stateTax;
  79. float total_fedTax;
  80. float total_netPay;
  81. };
  82.  
  83. // this structure type defines the min and max values of all floating
  84. // point items so they can be display in our final report
  85. struct min_max
  86. {
  87. float min_wageRate;
  88. float min_hours;
  89. float min_overtimeHrs;
  90. float min_grossPay;
  91. float min_stateTax;
  92. float min_fedTax;
  93. float min_netPay;
  94. float max_wageRate;
  95. float max_hours;
  96. float max_overtimeHrs;
  97. float max_grossPay;
  98. float max_stateTax;
  99. float max_fedTax;
  100. float max_netPay;
  101. };
  102.  
  103. // define prototypes here for each function except main
  104. void getHours (struct employee employeeData[], int theSize);
  105. void calcOvertimeHrs (struct employee employeeData[], int theSize);
  106. void calcGrossPay (struct employee employeeData[], int theSize);
  107. void printHeader (void);
  108. void printEmp (struct employee employeeData[], int theSize);
  109. void calcStateTax (struct employee employeeData[], int theSize);
  110. void calcFedTax (struct employee employeeData[], int theSize);
  111. void calcNetPay (struct employee employeeData[], int theSize);
  112. struct totals calcEmployeeTotals (struct employee employeeData[],
  113. struct totals employeeTotals,
  114. int theSize);
  115.  
  116. struct min_max calcEmployeeMinMax (struct employee employeeData[],
  117. struct min_max employeeMinMax,
  118. int theSize);
  119.  
  120. void printEmpStatistics (struct totals employeeTotals,
  121. struct min_max employeeMinMax,
  122. int theSize);
  123.  
  124. // Add your other function prototypes if needed here
  125.  
  126. int main ()
  127. {
  128.  
  129. // Set up a local variable to store the employee information
  130. // Initialize the name, tax state, clock number, and wage rate
  131. struct employee employeeData[SIZE] = {
  132. { {"Connie", "Cobol"}, "MA", 98401, 10.60},
  133. { {"Mary", "Apl"}, "NH", 526488, 9.75 },
  134. { {"Frank", "Fortran"}, "VT", 765349, 10.50 },
  135. { {"Jeff", "Ada"}, "NY", 34645, 12.25 },
  136. { {"Anton", "Pascal"},"CA",127615, 8.35 },
  137.  
  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. 10.60,
  334. 9.75,
  335. 10.50,
  336. 12.25,
  337. 8.35);
  338.  
  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. 10.60,
  348. 9.75,
  349. 10.50,
  350. 12.25,
  351. 8.35);
  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. 10.60,
  360. 9.75,
  361. 10.50,
  362. 12.25,
  363. 8.35);
  364.  
  365. // TODO - replace the zeros below with the correct reference to the
  366. // to the max member field
  367. printf("\nMaximum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  368. employeeMinMax.max_wageRate,
  369. 15.9,
  370. 14.625,
  371. 15.75,
  372. 18.375,
  373. 12.525);
  374.  
  375. } // printEmpStatistics
  376.  
  377. //*************************************************************
  378. // Function: calcOvertimeHrs
  379. //
  380. // Purpose: Calculates the overtime hours worked by an employee
  381. // in a given week for each employee.
  382. //
  383. // Parameters:
  384. //
  385. // employeeData - array of employees (i.e., struct employee)
  386. // theSize - the array size (i.e., number of employees)
  387. //
  388. // Returns: void
  389. //
  390. //**************************************************************
  391.  
  392. void calcOvertimeHrs (struct employee employeeData[], int theSize)
  393. {
  394.  
  395. int i; // array and loop index
  396.  
  397. // calculate overtime hours for each employee
  398. for (i = 0; i < theSize; ++i)
  399. {
  400. // Any overtime ?
  401. if (employeeData[i].hours >= STD_HOURS)
  402. {
  403. employeeData[i].overtimeHrs = employeeData[i].hours - STD_HOURS;
  404. }
  405. else // no overtime
  406. {
  407. employeeData[i].overtimeHrs = 0;
  408. }
  409.  
  410. } // for
  411.  
  412.  
  413. } // calcOvertimeHrs
  414.  
  415. //*************************************************************
  416. // Function: calcGrossPay
  417. //
  418. // Purpose: Calculates the gross pay based on the the normal pay
  419. // and any overtime pay for a given week for each
  420. // employee.
  421. //
  422. // Parameters:
  423. //
  424. // employeeData - array of employees (i.e., struct employee)
  425. // theSize - the array size (i.e., number of employees)
  426. //
  427. // Returns: void
  428. //
  429. //**************************************************************
  430.  
  431. void calcGrossPay (struct employee employeeData[], int theSize)
  432. {
  433. int i; // loop and array index
  434. float theNormalPay; // normal pay without any overtime hours
  435. float theOvertimePay; // overtime pay
  436.  
  437. // calculate grossPay for each employee
  438. for (i=0; i < theSize; ++i)
  439. {
  440. // calculate normal pay and any overtime pay
  441. theNormalPay = employeeData[i].wageRate *
  442. (employeeData[i].hours - employeeData[i].overtimeHrs);
  443. theOvertimePay = employeeData[i].overtimeHrs *
  444. (OT_RATE * employeeData[i].wageRate);
  445.  
  446. // calculate gross pay for employee as normalPay + any overtime pay
  447. employeeData[i].grossPay = theNormalPay + theOvertimePay;
  448. }
  449.  
  450. } // calcGrossPay
  451.  
  452. //*************************************************************
  453. // Function: calcStateTax
  454. //
  455. // Purpose: Calculates the State Tax owed based on gross pay
  456. // for each employee. State tax rate is based on the
  457. // the designated tax state based on where the
  458. // employee is actually performing the work. Each
  459. // state decides their tax rate.
  460. //
  461. // Parameters:
  462. //
  463. // employeeData - array of employees (i.e., struct employee)
  464. // theSize - the array size (i.e., number of employees)
  465. //
  466. // Returns: void
  467. //
  468. //**************************************************************
  469.  
  470. void calcStateTax (struct employee employeeData[], int theSize)
  471. {
  472.  
  473. int i; // loop and array index
  474.  
  475. // calculate state tax based on where employee works
  476. for (i=0; i < theSize; ++i)
  477. {
  478. // Make sure tax state is all uppercase
  479. if (islower(employeeData[i].taxState[0]))
  480. employeeData[i].taxState[0] = toupper(employeeData[i].taxState[0]);
  481. if (islower(employeeData[i].taxState[1]))
  482. employeeData[i].taxState[1] = toupper(employeeData[i].taxState[1]);
  483.  
  484. // calculate state tax based on where employee resides
  485. if (strcmp(employeeData[i].taxState, "MA") == 0)
  486. employeeData[i].stateTax = employeeData[i].grossPay * MA_TAX_RATE;
  487. else if (strcmp(employeeData[i].taxState, "NH") == 0)
  488. employeeData[i].stateTax = employeeData[i].grossPay * NH_TAX_RATE;
  489.  
  490. // TODO: Fix the state tax calculations for VT and CA ... right now
  491. // both are set to zero
  492. else if (strcmp(employeeData[i].taxState, "VT") == 0)
  493. employeeData[i].stateTax = employeeData[i].grossPay * VT_TAX_RATE;
  494. else if (strcmp(employeeData[i].taxState, "CA") == 0)
  495. employeeData[i].stateTax = employeeData[i].grossPay * CA_TAX_RATE;
  496. else
  497. // any other state is the default rate
  498. employeeData[i].stateTax = employeeData[i].grossPay * DEFAULT_TAX_RATE;
  499. } // for
  500.  
  501. } // calcStateTax
  502.  
  503. //*************************************************************
  504. // Function: calcFedTax
  505. //
  506. // Purpose: Calculates the Federal Tax owed based on the gross
  507. // pay for each employee
  508. //
  509. // Parameters:
  510. //
  511. // employeeData - array of employees (i.e., struct employee)
  512. // theSize - the array size (i.e., number of employees)
  513. //
  514. // Returns: void
  515. //
  516. //**************************************************************
  517.  
  518. void calcFedTax (struct employee employeeData[], int theSize)
  519. {
  520.  
  521. int i; // loop and array index
  522.  
  523. // calculate the federal tax for each employee
  524. for (i=0; i < theSize; ++i)
  525. {
  526.  
  527. // TODO: Fix the fedTax calculation to be the gross pay
  528. // multiplied by the Federal Tax Rate (use constant
  529. // provided.)
  530.  
  531. // Fed Tax is the same for all regardless of state
  532. employeeData[i].fedTax = employeeData[i].grossPay * FED_TAX_RATE;
  533.  
  534. } // for
  535.  
  536. } // calcFedTax
  537.  
  538. //*************************************************************
  539. // Function: calcNetPay
  540. //
  541. // Purpose: Calculates the net pay as the gross pay minus any
  542. // state and federal taxes owed for each employee.
  543. // Essentially, their "take home" pay.
  544. //
  545. // Parameters:
  546. //
  547. // employeeData - array of employees (i.e., struct employee)
  548. // theSize - the array size (i.e., number of employees)
  549. //
  550. // Returns: void
  551. //
  552. //**************************************************************
  553.  
  554. void calcNetPay (struct employee employeeData[], int theSize)
  555. {
  556. int i; // loop and array index
  557. float theTotalTaxes; // the total state and federal tax
  558.  
  559. // calculate the take home pay for each employee
  560. for (i=0; i < theSize; ++i)
  561. {
  562. // calculate the total state and federal taxes
  563. theTotalTaxes = employeeData[i].stateTax + employeeData[i].fedTax;
  564.  
  565. // TODO: Fix the netPay calculation to be the gross pay minus the
  566. // the total taxes paid
  567.  
  568. // calculate the net pay
  569. employeeData[i].netPay = employeeData[i].grossPay - theTotalTaxes;
  570.  
  571. } // for
  572.  
  573. } // calcNetPay
  574.  
  575. //*************************************************************
  576. // Function: calcEmployeeTotals
  577. //
  578. // Purpose: Performs a running total (sum) of each employee
  579. // floating point member in the array of structures
  580. //
  581. // Parameters:
  582. //
  583. // employeeData - array of employees (i.e., struct employee)
  584. // employeeTotals - structure containing a running totals
  585. // of all fields above
  586. // theSize - the array size (i.e., number of employees)
  587. //
  588. // Returns: employeeTotals - updated totals in the updated
  589. // employeeTotals structure
  590. //
  591. //**************************************************************
  592.  
  593. struct totals calcEmployeeTotals (struct employee employeeData[],
  594. struct totals employeeTotals,
  595. int theSize)
  596. {
  597.  
  598. int i; // loop and array index
  599.  
  600. // total up each floating point item for all employees
  601. for (i = 0; i < theSize; ++i)
  602. {
  603. // add current employee data to our running totals
  604. employeeTotals.total_wageRate += employeeData[i].wageRate;
  605. employeeTotals.total_hours += employeeData[i].hours;
  606. employeeTotals.total_overtimeHrs += employeeData[i].overtimeHrs;
  607. employeeTotals.total_grossPay += employeeData[i].grossPay;
  608. employeeTotals.total_stateTax += employeeData[i].stateTax;
  609. employeeTotals.total_fedTax += employeeData[i].fedTax;
  610. employeeTotals.total_netPay += employeeData[i].netPay;
  611.  
  612. } // for
  613.  
  614. return (employeeTotals);
  615.  
  616. } // calcEmployeeTotals
  617.  
  618. //*************************************************************
  619. // Function: calcEmployeeMinMax
  620. //
  621. // Purpose: Accepts various floating point values from an
  622. // employee and adds to a running update of min
  623. // and max values
  624. //
  625. // Parameters:
  626. //
  627. // employeeData - array of employees (i.e., struct employee)
  628. // employeeTotals - structure containing a running totals
  629. // of all fields above
  630. // theSize - the array size (i.e., number of employees)
  631. //
  632. // Returns: employeeMinMax - updated employeeMinMax structure
  633. //
  634. //**************************************************************
  635.  
  636. struct min_max calcEmployeeMinMax (struct employee employeeData[],
  637. struct min_max employeeMinMax,
  638. int theSize)
  639. {
  640.  
  641. int i; // array and loop index
  642.  
  643. // if this is the first set of data items, set
  644. // them to the min and max
  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. // set the max to the first element members
  654. employeeMinMax.max_wageRate = employeeData[0].wageRate;
  655. employeeMinMax.max_hours = employeeData[0].hours;
  656. employeeMinMax.max_overtimeHrs = employeeData[0].overtimeHrs;
  657. employeeMinMax.max_grossPay = employeeData[0].grossPay;
  658. employeeMinMax.max_stateTax = employeeData[0].stateTax;
  659. employeeMinMax.max_fedTax = employeeData[0].fedTax;
  660. employeeMinMax.max_netPay = employeeData[0].netPay;
  661.  
  662. // compare the rest of the items to each other for min and max
  663. for (i = 1; i < theSize; ++i)
  664. {
  665.  
  666. // check if current Wage Rate is the new min and/or max
  667. if (employeeData[i].wageRate < employeeMinMax.min_wageRate)
  668. {
  669. employeeMinMax.min_wageRate = employeeData[i].wageRate;
  670. }
  671.  
  672. if (employeeData[i].wageRate > employeeMinMax.max_wageRate)
  673. {
  674. employeeMinMax.max_wageRate = employeeData[i].wageRate;
  675. }
  676. // check if current hours is the new min and/or max
  677. if (employeeData[i].hours < employeeMinMax.min_hours)
  678. {
  679. employeeMinMax.min_hours = employeeData[i].hours;
  680. }
  681. if (employeeData[i].hours > employeeMinMax.max_hours)
  682. {
  683. employeeMinMax.max_hours = employeeData[i].hours;
  684. }
  685.  
  686. // Check if current Overtime Hours is the new min and/or max
  687. if (employeeData[i].overtimeHrs < employeeMinMax.min_overtimeHrs)
  688. {
  689. employeeMinMax.min_overtimeHrs = employeeData[i].overtimeHrs;
  690. }
  691. if (employeeData[i].overtimeHrs > employeeMinMax.max_overtimeHrs)
  692. {
  693. employeeMinMax.max_overtimeHrs = employeeData[i].overtimeHrs;
  694. }
  695.  
  696. // Check if current Gross Pay is the new min and/or max
  697. if (employeeData[i].grossPay < employeeMinMax.min_grossPay)
  698. {
  699. employeeMinMax.min_grossPay = employeeData[i].grossPay;
  700. }
  701. if (employeeData[i].grossPay > employeeMinMax.max_grossPay)
  702. {
  703. employeeMinMax.max_grossPay = employeeData[i].grossPay;
  704. }
  705.  
  706. // Check if current State Tax is the new min and/or max
  707. if (employeeData[i].stateTax < employeeMinMax.min_stateTax)
  708. {
  709. employeeMinMax.min_stateTax = employeeData[i].stateTax;
  710. }
  711. if (employeeData[i].stateTax > employeeMinMax.max_stateTax)
  712. {
  713. employeeMinMax.max_stateTax = employeeData[i].stateTax;
  714. }
  715.  
  716. // Check if current Federal Tax is the new min and/or max
  717. if (employeeData[i].fedTax < employeeMinMax.min_fedTax)
  718. {
  719. employeeMinMax.min_fedTax = employeeData[i].fedTax;
  720. }
  721. if (employeeData[i].fedTax > employeeMinMax.max_fedTax)
  722. {
  723. employeeMinMax.max_fedTax = employeeData[i].fedTax;
  724. }
  725.  
  726. // Check if current Net Pay is the new min and/or max
  727. if (employeeData[i].netPay < employeeMinMax.min_netPay)
  728. {
  729. employeeMinMax.min_netPay = employeeData[i].netPay;
  730. }
  731. if (employeeData[i].netPay > employeeMinMax.max_netPay)
  732. {
  733. employeeMinMax.max_netPay = employeeData[i].netPay;
  734. }
  735.  
  736.  
  737. } // else if
  738.  
  739. // return all the updated min and max values to the calling function
  740. return (employeeMinMax);
  741.  
  742. } // 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  10.6   9.8   10.50  12.25    8.35     0.00
Averages:                       10.29  10.6   9.8   10.50  12.25    8.35     0.00
Minimum:                         8.35  10.6   9.8   10.50  12.25    8.35     0.00
Maximum:                        12.25  15.9  14.6   15.75  18.38   12.53     0.00