fork download
  1. //********************************************************
  2. //
  3. // Assignment 7 - Structures and Strings
  4. //
  5. // Name: Morgan Card-Gimpelman
  6. //
  7. // Class: C Programming, Spring 2025
  8. //
  9. // Date: 3/30/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 Value 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. struct name
  45. {
  46. char firstName[FIRST_NAME_SIZE];
  47. char lastName [LAST_NAME_SIZE];
  48. };
  49.  
  50. struct employee
  51. {
  52. struct name empName;
  53. char taxState [TAX_STATE_SIZE];
  54. long int clockNumber;
  55. float wageRate;
  56. float hours;
  57. float overtimeHrs;
  58. float grossPay;
  59. float stateTax;
  60. float fedTax;
  61. float netPay;
  62. };
  63.  
  64. // this structure type defines the totals of all floating point items
  65. // so they can be totaled and used also to calculate averages
  66. struct totals
  67. {
  68. float total_wageRate;
  69. float total_hours;
  70. float total_overtimeHrs;
  71. float total_grossPay;
  72. float total_stateTax;
  73. float total_fedTax;
  74. float total_netPay;
  75. };
  76.  
  77. // this structure type defines the min and max values of all floating
  78. // point items so they can be display in our final report
  79. struct min_max
  80. {
  81. float min_wageRate;
  82. float min_hours;
  83. float min_overtimeHrs;
  84. float min_grossPay;
  85. float min_stateTax;
  86. float min_fedTax;
  87. float min_netPay;
  88. float max_wageRate;
  89. float max_hours;
  90. float max_overtimeHrs;
  91. float max_grossPay;
  92. float max_stateTax;
  93. float max_fedTax;
  94. float max_netPay;
  95. };
  96.  
  97. // define prototypes here for each function except main
  98. float getHours (long int clockNumber);
  99. float calcOvertimeHrs (float hours);
  100. float calcGrossPay (float wageRate, float hours, float overtimeHrs);
  101. void printHeader (void);
  102.  
  103. void printEmp (char firstname [], char lastName [], char taxState [],
  104. long int clockNumber, float wageRate,
  105. float hours, float overtimeHrs, float grossPay,
  106. float stateTax, float fedTax, float netPay);
  107.  
  108. float calcStateTax (float grossPay, char taxState[]);
  109. float calcFedTax (float grossPay);
  110. float calcNetPay (float grossPay, float stateTax, float fedTax);
  111.  
  112. struct totals calcEmployeeTotals (float wageRate,
  113. float hours,
  114. float overtimeHrs,
  115. float grossPay,
  116. float stateTax,
  117. float fedTax,
  118. float netPay,
  119. struct totals employeeTotals);
  120.  
  121. struct min_max calcEmployeeMinMax (float wageRate,
  122. float hours,
  123. float overtimeHrs,
  124. float grossPay,
  125. float stateTax,
  126. float fedTax,
  127. float netPay,
  128. struct min_max employeeMinMax,
  129. int arrayIndex);
  130.  
  131. void printEmpStatistics (struct totals employeeTotals,
  132. struct min_max employeeMinMax,
  133. int theSize);
  134.  
  135. // Add your other function prototypes if needed here
  136.  
  137. int main ()
  138. {
  139.  
  140. int i; // loop and array index
  141.  
  142. // Set up a local variable to store the employee information
  143. // Initialize the name, tax state, clock number, and wage rate
  144. struct employee employeeData[SIZE] = {
  145. { {"Connie", "Cobol"}, "MA", 98401, 10.60},
  146. { {"Mary", "Apl"}, "NH", 526488, 9.75 },
  147. { {"Frank", "Fortran"}, "VT", 765349, 10.50 },
  148. { {"Jeff", "Ada"}, "NY", 34645, 12.25 },
  149. { {"Anton", "Pascal"},"CA",127615, 8.35 }
  150. };
  151.  
  152. // set up structure to store totals and initialize all to zero
  153. struct totals employeeTotals = {0,0,0,0,0,0,0};
  154.  
  155. // set up structure to store min and max values and initialize all to zero
  156. struct min_max employeeMinMax = {0,0,0,0,0,0,0,0,0,0,0,0,0,0};
  157.  
  158. // Call functions as needed to read and calculate information
  159. for (i = 0; i < SIZE; ++i)
  160. {
  161.  
  162. // Prompt for the number of hours worked by the employee
  163. employeeData[i].hours = getHours (employeeData[i].clockNumber);
  164.  
  165. // Calculate the overtime hours
  166. employeeData[i].overtimeHrs = calcOvertimeHrs (employeeData[i].hours);
  167.  
  168. // Calculate the weekly gross pay
  169. employeeData[i].grossPay = calcGrossPay (employeeData[i].wageRate,
  170. employeeData[i].hours,
  171. employeeData[i].overtimeHrs);
  172. // Calculate the state tax
  173. employeeData[i].stateTax = calcStateTax (employeeData[i].grossPay,
  174. employeeData[i].taxState);
  175. // Calculate the federal tax
  176. employeeData[i].fedTax = calcFedTax (employeeData[i].grossPay);
  177.  
  178. // Calculate the net pay after taxes
  179. employeeData[i].netPay = calcNetPay (employeeData[i].grossPay,
  180. employeeData[i].stateTax,
  181. employeeData[i].fedTax);
  182.  
  183. // Keep a running sum of the employee totals
  184. employeeTotals = calcEmployeeTotals (employeeData[i].wageRate,
  185. employeeData[i].hours,
  186. employeeData[i].overtimeHrs,
  187. employeeData[i].grossPay,
  188. employeeData[i].stateTax,
  189. employeeData[i].fedTax,
  190. employeeData[i].netPay,
  191. employeeTotals);
  192.  
  193. // Keep a running update of the employee minimum and maximum values
  194. employeeMinMax = calcEmployeeMinMax (employeeData[i].wageRate,
  195. employeeData[i].hours,
  196. employeeData[i].overtimeHrs,
  197. employeeData[i].grossPay,
  198. employeeData[i].stateTax,
  199. employeeData[i].fedTax,
  200. employeeData[i].netPay,
  201. employeeMinMax,
  202. i);
  203.  
  204. } // for
  205.  
  206. // Print the column headers
  207. printHeader();
  208.  
  209. // print out final information on each employee
  210. for (i = 0; i < SIZE; ++i)
  211. {
  212. printEmp (employeeData[i].empName.firstName,
  213. employeeData[i].empName.lastName,
  214. employeeData[i].taxState,
  215. employeeData[i].clockNumber,
  216. employeeData[i].wageRate,
  217. employeeData[i].hours,
  218. employeeData[i].overtimeHrs,
  219. employeeData[i].grossPay,
  220. employeeData[i].stateTax,
  221. employeeData[i].fedTax,
  222. employeeData[i].netPay);
  223. } // for
  224.  
  225. // print the totals and averages for all float items
  226. printEmpStatistics (employeeTotals, employeeMinMax, SIZE);
  227.  
  228. return (0); // success
  229.  
  230. } // main
  231.  
  232. //**************************************************************
  233. // Function: getHours
  234. //
  235. // Purpose: Obtains input from user, the number of hours worked
  236. // per employee and stores the result in a local variable
  237. // that is passed back to the calling function.
  238. //
  239. // Parameters:
  240. //
  241. // clockNumber - The unique employee ID
  242. //
  243. // Returns: theHoursWorked - hours worked in a given week
  244. //
  245. //**************************************************************
  246.  
  247. float getHours (long int clockNumber)
  248. {
  249.  
  250. float theHoursWorked; // hours worked in a given week
  251.  
  252. // Read in hours for employee
  253. printf("\nEnter hours worked by emp # %06li: ", clockNumber);
  254. scanf ("%f", &theHoursWorked);
  255.  
  256. // return hours back to the calling function
  257. return (theHoursWorked);
  258.  
  259. } // getHours
  260.  
  261. //**************************************************************
  262. // Function: printHeader
  263. //
  264. // Purpose: Prints the initial table header information.
  265. //
  266. // Parameters: none
  267. //
  268. // Returns: void
  269. //
  270. //**************************************************************
  271.  
  272. void printHeader (void)
  273. {
  274.  
  275. printf ("\n\n*** Pay Calculator ***\n");
  276.  
  277. // print the table header
  278. printf("\n--------------------------------------------------------------");
  279. printf("-------------------");
  280. printf("\nName Tax Clock# Wage Hours OT Gross ");
  281. printf(" State Fed Net");
  282. printf("\n State Pay ");
  283. printf(" Tax Tax Pay");
  284.  
  285. printf("\n--------------------------------------------------------------");
  286. printf("-------------------");
  287.  
  288. } // printHeader
  289.  
  290. //*************************************************************
  291. // Function: printEmp
  292. //
  293. // Purpose: Prints out all the information for an employee
  294. // in a nice and orderly table format.
  295. //
  296. // Parameters:
  297. //
  298. // firstName - the employee first name
  299. // lastName - the employee last name
  300. // taxState - the state where the employee works
  301. // clockNumber - unique employee ID
  302. // wageRate - hourly wage rate
  303. // hours - Hours worked for the week
  304. // overtimeHrs - overtime hours worked in a week
  305. // grossPay - gross pay for the week
  306. // stateTax - the calculated state tax
  307. // fedTax - the calculated federal tax
  308. // netPay - the calculated take home pay after taxes
  309. //
  310. // Returns: void
  311. //
  312. //**************************************************************
  313.  
  314. void printEmp (char firstName [], char lastName [], char taxState [],
  315. long int clockNumber, float wageRate,
  316. float hours, float overtimeHrs, float grossPay,
  317. float stateTax, float fedTax, float netPay)
  318. {
  319.  
  320. // Used to format the employee name
  321. char name [FIRST_NAME_SIZE + LAST_NAME_SIZE + 1];
  322.  
  323. strcpy (name, firstName);
  324. strcat (name, " "); // add a space between first and last names
  325. strcat (name, lastName);
  326.  
  327. // Print out a single employee
  328. printf("\n%-20.20s %-2.2s %06li %5.2f %4.1f %4.1f %7.2f %6.2f %7.2f %8.2f",
  329. name, taxState, clockNumber, wageRate, hours,
  330. overtimeHrs, grossPay, stateTax, fedTax, netPay);
  331.  
  332. } // printEmp
  333.  
  334. //*************************************************************
  335. // Function: printEmpStatistics
  336. //
  337. // Purpose: Prints out the totals and averages of all
  338. // floating point value items for all employees
  339. // that have been processed.
  340. //
  341. // Parameters:
  342. //
  343. // employeeTotals - a structure containing a running total
  344. // of all employee floating point items
  345. // employeeMinMax - a structure containing all the minimum
  346. // and maximum values of all employee
  347. // floating point items
  348. // theSize - the total number of employees processed, used
  349. // to check for zero or negative divide condition.
  350. //
  351. // Returns: void
  352. //
  353. //**************************************************************
  354.  
  355. void printEmpStatistics (struct totals employeeTotals,
  356. struct min_max employeeMinMax,
  357. int theSize)
  358. {
  359.  
  360. // print a separator line
  361. printf("\n--------------------------------------------------------------");
  362. printf("-------------------");
  363.  
  364. // print the totals for all the floating point fields
  365. printf("\nTotals: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  366. employeeTotals.total_wageRate,
  367. employeeTotals.total_hours,
  368. employeeTotals.total_overtimeHrs,
  369. employeeTotals.total_grossPay,
  370. employeeTotals.total_stateTax,
  371. employeeTotals.total_fedTax,
  372. employeeTotals.total_netPay);
  373.  
  374. // make sure you don't divide by zero or a negative number
  375. if (theSize > 0)
  376. {
  377.  
  378. printf("\nAverages: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  379. employeeTotals.total_wageRate/theSize,
  380. employeeTotals.total_hours/theSize,
  381. employeeTotals.total_overtimeHrs/theSize,
  382. employeeTotals.total_grossPay/theSize,
  383. employeeTotals.total_stateTax/theSize,
  384. employeeTotals.total_fedTax/theSize,
  385. employeeTotals.total_netPay/theSize);
  386. } // if
  387.  
  388. // print the min and max values
  389. printf("\nMinimum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  390. employeeMinMax.min_wageRate,
  391. employeeMinMax.min_hours,
  392. employeeMinMax.min_overtimeHrs,
  393. employeeMinMax.min_grossPay,
  394. employeeMinMax.min_stateTax,
  395. employeeMinMax.min_fedTax,
  396. employeeMinMax.min_netPay);
  397.  
  398. printf("\nMaximum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  399. employeeMinMax.max_wageRate,
  400. employeeMinMax.max_hours,
  401. employeeMinMax.max_overtimeHrs,
  402. employeeMinMax.max_grossPay,
  403. employeeMinMax.max_stateTax,
  404. employeeMinMax.max_fedTax,
  405. employeeMinMax.max_netPay);
  406.  
  407. } // printEmpStatistics
  408.  
  409. //*************************************************************
  410. // Function: calcOvertimeHrs
  411. //
  412. // Purpose: Calculates the overtime hours worked by an employee
  413. // in a given week.
  414. //
  415. // Parameters:
  416. //
  417. // hours - Hours worked in a given week
  418. //
  419. // Returns: theOvertimeHrs - overtime hours worked by an employee
  420. // in a given week
  421. //
  422. //**************************************************************
  423.  
  424. float calcOvertimeHrs (float hours)
  425. {
  426.  
  427. float theOvertimeHrs; // calculated overtime hours for employee
  428.  
  429. // Any overtime ?
  430. if (hours >= STD_HOURS)
  431. {
  432. theOvertimeHrs = hours - STD_HOURS;
  433. }
  434. else // no overtime
  435. {
  436. theOvertimeHrs = 0;
  437. }
  438.  
  439. // return overtime hours back to the calling function
  440. return (theOvertimeHrs);
  441.  
  442. } // calcOvertimeHrs
  443.  
  444. //*************************************************************
  445. // Function: calcGrossPay
  446. //
  447. // Purpose: Calculates the gross pay based on the the normal pay
  448. // and any overtime pay for a given week.
  449. //
  450. // Parameters:
  451. //
  452. // wageRate - the hourly wage rate
  453. // hours - the hours worked in a given week
  454. // overtimeHrs - hours worked above normal hours
  455. //
  456. // Returns: theGrossPay - total weekly gross pay for an employee
  457. //
  458. //**************************************************************
  459.  
  460. float calcGrossPay (float wageRate, float hours, float overtimeHrs)
  461. {
  462.  
  463. float theGrossPay; // gross pay earned in a given week
  464. float theNormalPay; // normal pay without any overtime hours
  465. float theOvertimePay; // overtime pay
  466.  
  467. // calculate normal pay and any overtime pay
  468. theNormalPay = wageRate * (hours - overtimeHrs);
  469. theOvertimePay = overtimeHrs * (OT_RATE * wageRate);
  470.  
  471. // calculate gross pay for employee as normalPay + any overtime pay
  472. theGrossPay = theNormalPay + theOvertimePay;
  473.  
  474. // return the calculated gross pay value back
  475. return (theGrossPay);
  476.  
  477. } // calcGrossPay
  478.  
  479. //*************************************************************
  480. // Function: calcStateTax
  481. //
  482. // Purpose: Calculates the State Tax owed based on gross pay
  483. //
  484. // Parameters:
  485. //
  486. // grossPay - the grossPay for a given week
  487. // taxState - the physical state where the employee works
  488. //
  489. // Returns: theStateTax - calculated state tax owed
  490. //
  491. //**************************************************************
  492.  
  493. float calcStateTax (float grossPay, char taxState[])
  494. {
  495.  
  496. float theStateTax; // calculated state tax
  497.  
  498. theStateTax = grossPay; // initialize to grossPay
  499.  
  500. // Make sure tax state is all uppercase
  501. if (islower(taxState[0]))
  502. taxState[0] = toupper(taxState[0]); // make upper case
  503. if (islower(taxState[1]))
  504. taxState[1] = toupper(taxState[1]); // make upper case
  505.  
  506. // calculate state tax based on where employee resides
  507. if (strcmp(taxState, "MA") == 0)
  508. theStateTax *= MA_TAX_RATE;
  509. else if (strcmp(taxState, "NH") == 0)
  510. theStateTax *= NH_TAX_RATE;
  511. else if (strcmp(taxState, "VT") == 0)
  512. theStateTax *= VT_TAX_RATE;
  513. else if (strcmp(taxState, "CA") == 0)
  514. theStateTax *= CA_TAX_RATE;
  515. else
  516. theStateTax *= DEFAULT_TAX_RATE; // any other state
  517.  
  518. // return the calculated state tax back
  519. return (theStateTax);
  520.  
  521. } // calcStateTax
  522.  
  523. //*************************************************************
  524. // Function: calcFedTax
  525. //
  526. // Purpose: Calculates the Federal Tax owed based on the gross
  527. // pay
  528. //
  529. // Parameters:
  530. //
  531. // grossPay - the grossPay for a given week
  532. //
  533. // Returns: theFedTax - calculated federal tax owed
  534. //
  535. //**************************************************************
  536.  
  537. float calcFedTax (float grossPay)
  538. {
  539.  
  540. float theFedTax; // The calculated Federal Tax
  541.  
  542. // Fed Tax is the same for all regardless of state
  543. theFedTax = grossPay * FED_TAX_RATE;
  544.  
  545. // return the calculated federal tax back
  546. return (theFedTax);
  547.  
  548. } // calcFedTax
  549.  
  550. //*************************************************************
  551. // Function: calcNetPay
  552. //
  553. // Purpose: Calculates the net pay as the gross pay minus any
  554. // state and federal taxes owed. Essentially, your
  555. // "take home" pay.
  556. //
  557. // Parameters:
  558. //
  559. // grossPay - the grossPay for a given week
  560. // stateTax - the state taxes owed
  561. // fedTax - the fed taxes owed
  562. //
  563. // Returns: theNetPay - calculated take home pay (minus taxes)
  564. //
  565. //**************************************************************
  566.  
  567. float calcNetPay (float grossPay, float stateTax, float fedTax)
  568. {
  569.  
  570. float theNetPay; // total take home pay (minus taxes)
  571. float theTotalTaxes; // total taxes owed
  572.  
  573. // calculate the total state and federal taxes
  574. theTotalTaxes = stateTax + fedTax;
  575.  
  576. // calculate the net pay
  577. theNetPay = grossPay - theTotalTaxes;
  578.  
  579. // return the calculated net pay back
  580. return (theNetPay);
  581.  
  582. } // calcNetPay
  583.  
  584. //*************************************************************
  585. // Function: calcEmployeeTotals
  586. //
  587. // Purpose: Accepts various floating point values from an
  588. // employee and adds to a running total.
  589. //
  590. // Parameters:
  591. //
  592. // wageRate - hourly wage rate
  593. // hours - hours worked in a given week
  594. // overtimeHrs - overtime hours worked in a week
  595. // grossPay - the grossPay for a given week
  596. // stateTax - the state taxes owed
  597. // fedTax - the fed taxes owed
  598. // netPay - total take home page (after taxes)
  599. // employeeTotals - structure containing a running totals
  600. // of all fields above
  601. //
  602. // Returns: employeeTotals - updated employeeTotals structure
  603. //
  604. //**************************************************************
  605.  
  606. struct totals calcEmployeeTotals (float wageRate,
  607. float hours,
  608. float overtimeHrs,
  609. float grossPay,
  610. float stateTax,
  611. float fedTax,
  612. float netPay,
  613. struct totals employeeTotals)
  614. {
  615.  
  616. // add current employee data to our running totals
  617. employeeTotals.total_wageRate += wageRate;
  618. employeeTotals.total_hours += hours;
  619. employeeTotals.total_overtimeHrs += overtimeHrs;
  620. employeeTotals.total_grossPay += grossPay;
  621. employeeTotals.total_stateTax += stateTax;
  622. employeeTotals.total_fedTax += fedTax;
  623. employeeTotals.total_netPay += netPay;
  624.  
  625. // return all the updated totals to the calling function
  626. return (employeeTotals);
  627.  
  628. } // calcEmployeeTotals
  629.  
  630. //*************************************************************
  631. // Function: calcEmployeeMinMax
  632. //
  633. // Purpose: Accepts various floating point values from an
  634. // employee and adds to a running update of min
  635. // and max values
  636. //
  637. // Parameters:
  638. //
  639. // wageRate - hourly wage rate
  640. // hours - hours worked in a given week
  641. // overtimeHrs - overtime hours worked in a week
  642. // grossPay - the grossPay for a given week
  643. // stateTax - the state taxes owed
  644. // fedTax - the fed taxes owed
  645. // netPay - total take home page (after taxes)
  646. // employeeTotals - structure containing a running totals
  647. // of all fields above
  648. // arrayIndex - the array index of the current set of element
  649. // members being processed for the Array of
  650. // Employee structure
  651. //
  652. // Returns: employeeMinMax - updated employeeMinMax structure
  653. //
  654. //**************************************************************
  655.  
  656. struct min_max calcEmployeeMinMax (float wageRate,
  657. float hours,
  658. float overtimeHrs,
  659. float grossPay,
  660. float stateTax,
  661. float fedTax,
  662. float netPay,
  663. struct min_max employeeMinMax,
  664. int arrayIndex)
  665. {
  666.  
  667. // if this is the first set of data items, set
  668. // them to the min and max
  669. if (arrayIndex == 0)
  670. {
  671. // set the min to the first element members
  672. employeeMinMax.min_wageRate = wageRate;
  673. employeeMinMax.min_hours = hours;
  674. employeeMinMax.min_overtimeHrs = overtimeHrs;
  675. employeeMinMax.min_grossPay = grossPay;
  676. employeeMinMax.min_stateTax = 0.00;
  677. employeeMinMax.min_fedTax = fedTax;
  678. employeeMinMax.min_netPay = netPay;
  679.  
  680. // set the max to the first element members
  681. employeeMinMax.max_wageRate = wageRate;
  682. employeeMinMax.max_hours = hours;
  683. employeeMinMax.max_overtimeHrs = overtimeHrs;
  684. employeeMinMax.max_grossPay = grossPay;
  685. employeeMinMax.max_stateTax = stateTax;
  686. employeeMinMax.max_fedTax = fedTax;
  687. employeeMinMax.max_netPay = netPay;
  688.  
  689. } // if
  690.  
  691. else if (arrayIndex > 1) // process if other array elements
  692. {
  693.  
  694. // check if current Wage Rate is the new min and/or max
  695. if (wageRate < employeeMinMax.min_wageRate)
  696. {
  697. employeeMinMax.min_wageRate = wageRate;
  698. }
  699.  
  700. if (wageRate > employeeMinMax.max_wageRate)
  701. {
  702. employeeMinMax.max_wageRate = wageRate;
  703. }
  704.  
  705. if (hours < employeeMinMax.min_hours)
  706. {
  707. employeeMinMax.min_hours = hours;
  708. }
  709.  
  710. if (hours > employeeMinMax.max_hours)
  711. {
  712. employeeMinMax.max_hours = hours;
  713. }
  714.  
  715. if (overtimeHrs < employeeMinMax.min_overtimeHrs)
  716. {
  717. employeeMinMax.min_overtimeHrs = overtimeHrs;
  718. }
  719.  
  720. if (overtimeHrs > employeeMinMax.max_overtimeHrs)
  721. {
  722. employeeMinMax.max_overtimeHrs = overtimeHrs;
  723. }
  724.  
  725. if (grossPay < employeeMinMax.min_grossPay)
  726. {
  727. employeeMinMax.min_grossPay = grossPay;
  728. }
  729.  
  730. if (grossPay > employeeMinMax.max_grossPay)
  731. {
  732. employeeMinMax.max_grossPay = grossPay;
  733. }
  734.  
  735. if (stateTax < employeeMinMax.min_stateTax)
  736. {
  737. employeeMinMax.min_stateTax = stateTax;
  738. }
  739.  
  740. if (stateTax > employeeMinMax.max_stateTax)
  741. {
  742. employeeMinMax.max_stateTax = stateTax;
  743. }
  744.  
  745. if (fedTax < employeeMinMax.min_fedTax)
  746. {
  747. employeeMinMax.min_fedTax = fedTax;
  748. }
  749.  
  750. if (fedTax > employeeMinMax.max_fedTax)
  751. {
  752. employeeMinMax.max_fedTax = fedTax;
  753. }
  754.  
  755. if (netPay < employeeMinMax.min_netPay)
  756. {
  757. employeeMinMax.min_netPay = netPay;
  758. }
  759.  
  760. if (netPay > employeeMinMax.max_netPay)
  761. {
  762. employeeMinMax.max_netPay = netPay;
  763. }
  764.  
  765. } // else if
  766.  
  767. // return all the updated min and max values to the calling function
  768. return (employeeMinMax);
  769.  
  770. } // calcEmployeeMinMax
  771.  
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  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