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