fork download
  1. //********************************************************
  2. //
  3. // Assignment 7 - Structures and Strings
  4. //
  5. // Name: Matt Smith
  6. //
  7. // Class: C Programming, Spring 2025
  8. //
  9. // Date: 3/26/2025
  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
  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 displayed 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. // 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. employeeMinMax = calcEmployeeMinMax (employeeData,
  169. employeeMinMax,
  170. SIZE);
  171.  
  172. // Print the column headers
  173. printHeader();
  174.  
  175. // Print out final information on each employee
  176. printEmp (employeeData, SIZE);
  177.  
  178. // Print the totals and averages of all float items
  179. printEmpStatistics (employeeTotals, employeeMinMax, SIZE);
  180.  
  181. return (0); // success
  182.  
  183. } // main
  184.  
  185. //**************************************************************
  186. // Function: getHours
  187. //
  188. // Purpose: Obtains input from user, the number of hours worked
  189. // per employee and updates it in the array of structures
  190. // for each employee.
  191. //
  192. // Parameters:
  193. //
  194. // employeeData - array of employees (i.e., struct employee)
  195. // theSize - the array size (i.e., number of employees)
  196. //
  197. // Returns: void
  198. //
  199. //**************************************************************
  200.  
  201. void getHours (struct employee employeeData[], int theSize)
  202. {
  203.  
  204. int i; // array and loop index
  205.  
  206. // read in hours for each employee
  207. for (i = 0; i < theSize; ++i)
  208. {
  209. // Read in hours for employee
  210. printf("\nEnter hours worked by emp # %06li: ", employeeData[i].clockNumber);
  211. scanf ("%f", &employeeData[i].hours);
  212. }
  213.  
  214. } // getHours
  215.  
  216. //**************************************************************
  217. // Function: printHeader
  218. //
  219. // Purpose: Prints the initial table header information.
  220. //
  221. // Parameters: none
  222. //
  223. // Returns: void
  224. //
  225. //**************************************************************
  226.  
  227. void printHeader (void)
  228. {
  229.  
  230. printf ("\n\n*** Pay Calculator ***\n");
  231.  
  232. // print the table header
  233. printf("\n--------------------------------------------------------------");
  234. printf("-------------------");
  235. printf("\nName Tax Clock# Wage Hours OT Gross ");
  236. printf(" State Fed Net");
  237. printf("\n State Pay ");
  238. printf(" Tax Tax Pay");
  239.  
  240. printf("\n--------------------------------------------------------------");
  241. printf("-------------------");
  242.  
  243. } // printHeader
  244.  
  245. //*************************************************************
  246. // Function: printEmp
  247. //
  248. // Purpose: Prints out all the information for each employee
  249. // in a nice and orderly table format.
  250. //
  251. // Parameters:
  252. //
  253. // employeeData - array of struct employee
  254. // theSize - the array size (i.e., number of employees)
  255. //
  256. // Returns: void
  257. //
  258. //**************************************************************
  259.  
  260. void printEmp (struct employee employeeData[], int theSize)
  261. {
  262.  
  263. int i; // array and loop index
  264.  
  265. // used to format the employee name
  266. char name [FIRST_NAME_SIZE + LAST_NAME_SIZE + 1];
  267.  
  268. // read in hours for each employee
  269. for (i = 0; i < theSize; ++i)
  270. {
  271. // While you could just print the first and last name in the printf
  272. // statement that follows, you could also use various C string library
  273. // functions to format the name exactly the way you want it. Breaking
  274. // the name into first and last members additionally gives you some
  275. // flexibility in printing. This also becomes more useful if we decide
  276. // later to store other parts of a person's name. I really did this just
  277. // to show you how to work with some of the common string functions.
  278. strcpy (name, employeeData[i].empName.firstName);
  279. strcat (name, " "); // add a space between first and last names
  280. strcat (name, employeeData[i].empName.lastName);
  281.  
  282. // Print out a single employee
  283. printf("\n%-20.20s %-2.2s %06li %5.2f %4.1f %4.1f %7.2f %6.2f %7.2f %8.2f",
  284. name, employeeData[i].taxState, employeeData[i].clockNumber,
  285. employeeData[i].wageRate, employeeData[i].hours,
  286. employeeData[i].overtimeHrs, employeeData[i].grossPay,
  287. employeeData[i].stateTax, employeeData[i].fedTax,
  288. employeeData[i].netPay);
  289.  
  290. } // for
  291.  
  292. } // printEmp
  293.  
  294. //*************************************************************
  295. // Function: printEmpStatistics
  296. //
  297. // Purpose: Prints out the summary totals and averages of all
  298. // floating point value items for all employees
  299. // that have been processed. It also prints
  300. // out the min and max values.
  301. //
  302. // Parameters:
  303. //
  304. // employeeTotals - a structure containing a running total
  305. // of all employee floating point items
  306. // employeeMinMax - a structure containing all the minimum
  307. // and maximum values of all employee
  308. // floating point items
  309. // theSize - the total number of employees processed, used
  310. // to check for zero or negative divide condition.
  311. //
  312. // Returns: void
  313. //
  314. //**************************************************************
  315.  
  316. void printEmpStatistics (struct totals employeeTotals,
  317. struct min_max employeeMinMax,
  318. int theSize)
  319. {
  320.  
  321. // print a separator line
  322. printf("\n--------------------------------------------------------------");
  323. printf("-------------------");
  324.  
  325. // print the totals for all the floating point fields
  326. // TODO - replace the zeros below with the correct reference to the
  327. // reference to the member total item
  328. printf("\nTotals: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  329. employeeTotals.total_wageRate,
  330. employeeTotals.total_hours,
  331. 10.60,
  332. 9.75,
  333. 10.50,
  334. 12.25,
  335. 8.35);
  336.  
  337. // make sure you don't divide by zero or a negative number
  338. if (theSize > 0)
  339. {
  340. // print the averages for all the floating point fields
  341. // TODO - replace the zeros below with the correct reference to the
  342. // the average calculation using with the correct total item
  343. printf("\nAverages: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  344. employeeTotals.total_wageRate/theSize,
  345. employeeTotals.total_hours/theSize,
  346. 10.60,
  347. 9.75,
  348. 10.50,
  349. 12.25,
  350. 8.35);
  351. } // if
  352.  
  353. // print the min and max values
  354. // TODO - replace the zeros below with the correct reference to the
  355. // to the min member field
  356. printf("\nMinimum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  357. employeeMinMax.min_wageRate,
  358. 10.60,
  359. 9.75,
  360. 10.50,
  361. 12.25,
  362. 8.35);
  363.  
  364. // TODO - replace the zeros below with the correct reference to the
  365. // to the max member field
  366. printf("\nMaximum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  367. employeeMinMax.max_wageRate,
  368. 10.60,
  369. 9.75,
  370. 10.50,
  371. 12.25,
  372. 8.35);
  373.  
  374. } // printEmpStatistics
  375.  
  376. //*************************************************************
  377. // Function: calcOvertimeHrs
  378. //
  379. // Purpose: Calculates the overtime hours worked by an employee
  380. // in a given week for each employee.
  381. //
  382. // Parameters:
  383. //
  384. // employeeData - array of employees (i.e., struct employee)
  385. // theSize - the array size (i.e., number of employees)
  386. //
  387. // Returns: void
  388. //
  389. //**************************************************************
  390.  
  391. void calcOvertimeHrs (struct employee employeeData[], int theSize)
  392. {
  393.  
  394. int i; // array and loop index
  395.  
  396. // calculate overtime hours for each employee
  397. for (i = 0; i < theSize; ++i)
  398. {
  399. // Any overtime ?
  400. if (employeeData[i].hours >= STD_HOURS)
  401. {
  402. employeeData[i].overtimeHrs = employeeData[i].hours - STD_HOURS;
  403. }
  404. else // no overtime
  405. {
  406. employeeData[i].overtimeHrs = 0;
  407. }
  408.  
  409. } // for
  410.  
  411.  
  412. } // calcOvertimeHrs
  413.  
  414. //*************************************************************
  415. // Function: calcGrossPay
  416. //
  417. // Purpose: Calculates the gross pay based on the the normal pay
  418. // and any overtime pay for a given week for each
  419. // employee.
  420. //
  421. // Parameters:
  422. //
  423. // employeeData - array of employees (i.e., struct employee)
  424. // theSize - the array size (i.e., number of employees)
  425. //
  426. // Returns: void
  427. //
  428. //**************************************************************
  429.  
  430. void calcGrossPay (struct employee employeeData[], int theSize)
  431. {
  432. int i; // loop and array index
  433. float theNormalPay; // normal pay without any overtime hours
  434. float theOvertimePay; // overtime pay
  435.  
  436. // calculate grossPay for each employee
  437. for (i=0; i < theSize; ++i)
  438. {
  439. // calculate normal pay and any overtime pay
  440. theNormalPay = employeeData[i].wageRate *
  441. (employeeData[i].hours - employeeData[i].overtimeHrs);
  442. theOvertimePay = employeeData[i].overtimeHrs *
  443. (OT_RATE * employeeData[i].wageRate);
  444.  
  445. // calculate gross pay for employee as normalPay + any overtime pay
  446. employeeData[i].grossPay = theNormalPay + theOvertimePay;
  447. }
  448.  
  449. } // calcGrossPay
  450.  
  451. //*************************************************************
  452. // Function: calcStateTax
  453. //
  454. // Purpose: Calculates the State Tax owed based on gross pay
  455. // for each employee. State tax rate is based on the
  456. // the designated tax state based on where the
  457. // employee is actually performing the work. Each
  458. // state decides their tax rate.
  459. //
  460. // Parameters:
  461. //
  462. // employeeData - array of employees (i.e., struct employee)
  463. // theSize - the array size (i.e., number of employees)
  464. //
  465. // Returns: void
  466. //
  467. //**************************************************************
  468.  
  469. void calcStateTax (struct employee employeeData[], int theSize)
  470. {
  471.  
  472. int i; // loop and array index
  473.  
  474. // calculate state tax based on where employee works
  475. for (i=0; i < theSize; ++i)
  476. {
  477. // Make sure tax state is all uppercase
  478. if (islower(employeeData[i].taxState[0]))
  479. employeeData[i].taxState[0] = toupper(employeeData[i].taxState[0]);
  480. if (islower(employeeData[i].taxState[1]))
  481. employeeData[i].taxState[1] = toupper(employeeData[i].taxState[1]);
  482.  
  483. // calculate state tax based on where employee resides
  484. if (strcmp(employeeData[i].taxState, "MA") == 0)
  485. employeeData[i].stateTax = employeeData[i].grossPay * MA_TAX_RATE;
  486. else if (strcmp(employeeData[i].taxState, "NH") == 0)
  487. employeeData[i].stateTax = employeeData[i].grossPay * NH_TAX_RATE;
  488.  
  489. // TODO: Fix the state tax calculations for VT and CA ... right now
  490. // both are set to zero
  491. else if (strcmp(employeeData[i].taxState, "VT") == 0)
  492. employeeData[i].stateTax = employeeData[i].grossPay * VT_TAX_RATE;
  493. else if (strcmp(employeeData[i].taxState, "CA") == 0)
  494. employeeData[i].stateTax = employeeData[i].grossPay * CA_TAX_RATE;
  495. else
  496. // any other state is the default rate
  497. employeeData[i].stateTax = employeeData[i].grossPay * DEFAULT_TAX_RATE;
  498. } // for
  499.  
  500. } // calcStateTax
  501.  
  502. //*************************************************************
  503. // Function: calcFedTax
  504. //
  505. // Purpose: Calculates the Federal Tax owed based on the gross
  506. // pay for each employee
  507. //
  508. // Parameters:
  509. //
  510. // employeeData - array of employees (i.e., struct employee)
  511. // theSize - the array size (i.e., number of employees)
  512. //
  513. // Returns: void
  514. //
  515. //**************************************************************
  516.  
  517. void calcFedTax (struct employee employeeData[], int theSize)
  518. {
  519.  
  520. int i; // loop and array index
  521.  
  522. // calculate the federal tax for each employee
  523. for (i=0; i < theSize; ++i)
  524. {
  525.  
  526. // TODO: Fix the fedTax calculation to be the gross pay
  527. // multiplied by the Federal Tax Rate (use constant
  528. // provided.)
  529.  
  530. // Fed Tax is the same for all regardless of state
  531. employeeData[i].fedTax = employeeData[i].grossPay * FED_TAX_RATE;
  532.  
  533. } // for
  534.  
  535. } // calcFedTax
  536.  
  537. //*************************************************************
  538. // Function: calcNetPay
  539. //
  540. // Purpose: Calculates the net pay as the gross pay minus any
  541. // state and federal taxes owed for each employee.
  542. // Essentially, their "take home" pay.
  543. //
  544. // Parameters:
  545. //
  546. // employeeData - array of employees (i.e., struct employee)
  547. // theSize - the array size (i.e., number of employees)
  548. //
  549. // Returns: void
  550. //
  551. //**************************************************************
  552.  
  553. void calcNetPay (struct employee employeeData[], int theSize)
  554. {
  555. int i; // loop and array index
  556. float theTotalTaxes; // the total state and federal tax
  557.  
  558. // calculate the take home pay for each employee
  559. for (i=0; i < theSize; ++i)
  560. {
  561. // calculate the total state and federal taxes
  562. theTotalTaxes = employeeData[i].stateTax + employeeData[i].fedTax;
  563.  
  564. // TODO: Fix the netPay calculation to be the gross pay minus the
  565. // the total taxes paid
  566. employeeData[i].netPay = employeeData[i].grossPay - theTotalTaxes;
  567.  
  568. } // for
  569.  
  570. } // calcNetPay
  571.  
  572. //*************************************************************
  573. // Function: calcEmployeeTotals
  574. //
  575. // Purpose: Performs a running total (sum) of each employee
  576. // floating point member in the array of structures
  577. //
  578. // Parameters:
  579. //
  580. // employeeData - array of employees (i.e., struct employee)
  581. // employeeTotals - structure containing a running totals
  582. // of all fields above
  583. // theSize - the array size (i.e., number of employees)
  584. //
  585. // Returns: employeeTotals - updated totals in the updated
  586. // employeeTotals structure
  587. //
  588. //**************************************************************
  589.  
  590. struct totals calcEmployeeTotals (struct employee employeeData[],
  591. struct totals employeeTotals,
  592. int theSize)
  593. {
  594.  
  595. int i; // loop and array index
  596.  
  597. // total up each floating point item for all employees
  598. for (i = 0; i < theSize; ++i)
  599. {
  600. // add current employee data to our running totals
  601. employeeTotals.total_wageRate += employeeData[i].wageRate;
  602. employeeTotals.total_hours += employeeData[i].hours;
  603. employeeTotals.total_overtimeHrs += employeeData[i].overtimeHrs;
  604. employeeTotals.total_grossPay += employeeData[i].grossPay;
  605. employeeTotals.total_stateTax += employeeData[i].stateTax;
  606. employeeTotals.total_fedTax += employeeData[i].fedTax;
  607. employeeTotals.total_netPay += employeeData[i].netPay;
  608.  
  609. } // for
  610.  
  611. return (employeeTotals);
  612.  
  613. } // calcEmployeeTotals
  614.  
  615. //*************************************************************
  616. // Function: calcEmployeeMinMax
  617. //
  618. // Purpose: Accepts various floating point values from an
  619. // employee and adds to a running update of min
  620. // and max values
  621. //
  622. // Parameters:
  623. //
  624. // employeeData - array of employees (i.e., struct employee)
  625. // employeeTotals - structure containing a running totals
  626. // of all fields above
  627. // theSize - the array size (i.e., number of employees)
  628. //
  629. // Returns: employeeMinMax - updated employeeMinMax structure
  630. //
  631. //**************************************************************
  632.  
  633. struct min_max calcEmployeeMinMax (struct employee employeeData[],
  634. struct min_max employeeMinMax,
  635. int theSize)
  636. {
  637.  
  638. int i; // array and loop index
  639.  
  640. // if this is the first set of data items, set
  641. // them to the min and max
  642. employeeMinMax.min_wageRate = employeeData[0].wageRate;
  643. employeeMinMax.min_hours = employeeData[0].hours;
  644. employeeMinMax.min_overtimeHrs = employeeData[0].overtimeHrs;
  645. employeeMinMax.min_grossPay = employeeData[0].grossPay;
  646. employeeMinMax.min_stateTax = employeeData[0].stateTax;
  647. employeeMinMax.min_fedTax = employeeData[0].fedTax;
  648. employeeMinMax.min_netPay = employeeData[0].netPay;
  649.  
  650. // set the max to the first element members
  651. employeeMinMax.max_wageRate = employeeData[0].wageRate;
  652. employeeMinMax.max_hours = employeeData[0].hours;
  653. employeeMinMax.max_overtimeHrs = employeeData[0].overtimeHrs;
  654. employeeMinMax.max_grossPay = employeeData[0].grossPay;
  655. employeeMinMax.max_stateTax = employeeData[0].stateTax;
  656. employeeMinMax.max_fedTax = employeeData[0].fedTax;
  657. employeeMinMax.max_netPay = employeeData[0].netPay;
  658.  
  659. // compare the rest of the items to each other for min and max
  660. for (i = 1; i < theSize; ++i)
  661. {
  662.  
  663. // check if current Wage Rate is the new min and/or max
  664. if (employeeData[i].wageRate < employeeMinMax.min_wageRate)
  665. {
  666. employeeMinMax.min_wageRate = employeeData[i].wageRate;
  667. }
  668.  
  669. if (employeeData[i].wageRate > employeeMinMax.max_wageRate)
  670. {
  671. employeeMinMax.max_wageRate = employeeData[i].wageRate;
  672. }
  673.  
  674. // TODO: do the same checking for all the other min and max items
  675. // ... just repeat the two "if statements" with the right
  676. // reference between the specific min and max fields and
  677. // employeeData array of structures item.
  678.  
  679. if (employeeData[i].hours < employeeMinMax.min_hours)
  680. {
  681. employeeMinMax.min_hours = employeeData[i].hours;
  682. }
  683.  
  684. if (employeeData[i].hours > employeeMinMax.max_hours)
  685. {
  686. employeeMinMax.max_hours = employeeData[i].hours;
  687. }
  688.  
  689. if (employeeData[i].overtimeHrs < employeeMinMax.min_overtimeHrs)
  690. {
  691. employeeMinMax.min_overtimeHrs = employeeData[i].overtimeHrs;
  692. }
  693.  
  694. if (employeeData[i].overtimeHrs > employeeMinMax.max_overtimeHrs)
  695. {
  696. employeeMinMax.max_overtimeHrs = employeeData[i].overtimeHrs;
  697. }
  698.  
  699. if (employeeData[i].grossPay < employeeMinMax.min_grossPay)
  700. {
  701. employeeMinMax.min_grossPay = employeeData[i].grossPay;
  702. }
  703.  
  704. if (employeeData[i].grossPay > employeeMinMax.max_grossPay)
  705. {
  706. employeeMinMax.max_grossPay = employeeData[i].grossPay;
  707. }
  708.  
  709. if (employeeData[i].stateTax < employeeMinMax.min_stateTax)
  710. {
  711. employeeMinMax.min_stateTax = employeeData[i].stateTax;
  712. }
  713.  
  714. if (employeeData[i].stateTax > employeeMinMax.max_stateTax)
  715. {
  716. employeeMinMax.max_stateTax = employeeData[i].stateTax;
  717. }
  718.  
  719. if (employeeData[i].fedTax < employeeMinMax.min_fedTax)
  720. {
  721. employeeMinMax.min_fedTax = employeeData[i].fedTax;
  722. }
  723.  
  724. if (employeeData[i].fedTax > employeeMinMax.max_fedTax)
  725. {
  726. employeeMinMax.max_fedTax = employeeData[i].fedTax;
  727. }
  728.  
  729. if (employeeData[i].netPay < employeeMinMax.min_netPay)
  730. {
  731. employeeMinMax.min_netPay = employeeData[i].netPay;
  732. }
  733.  
  734. if (employeeData[i].netPay > employeeMinMax.max_netPay)
  735. {
  736. employeeMinMax.max_netPay = employeeData[i].netPay;
  737. }
  738.  
  739. } // else if
  740.  
  741. // return all the updated min and max values to the calling function
  742. return (employeeMinMax);
  743.  
  744. } // calcEmployeeMinMax
  745.  
  746.  
  747.  
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:                          0.00   0.0  10.6    9.75  10.50   12.25     8.35
Averages:                        0.00   0.0  10.6    9.75  10.50   12.25     8.35
Minimum:                         8.35  10.6   9.8   10.50  12.25    8.35     8.35
Maximum:                        12.25  10.6   9.8   10.50  12.25    8.35     8.35