fork download
  1. //********************************************************
  2. //
  3. // Assignment 9 - Linked Lists
  4. //
  5. // Name: Morgan Card-Gimpelman
  6. //
  7. // Class: C Programming, Spring 2025
  8. //
  9. // Date: 4/13/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. // Array and Structure references have all been replaced with
  20. // pointer references to speed up the processing of this code.
  21. // A linked list has been created and deployed to dynamically
  22. // allocate and process employees as needed.
  23. //
  24. // Call by Reference design (using pointers)
  25. //
  26. //********************************************************
  27.  
  28. // necessary header files
  29. #include <stdio.h>
  30. #include <string.h>
  31. #include <ctype.h> // for char functions
  32. #include <stdlib.h> // for malloc
  33.  
  34. // define constants
  35. #define STD_HOURS 40.0
  36. #define OT_RATE 1.5
  37. #define MA_TAX_RATE 0.05
  38. #define NH_TAX_RATE 0.0
  39. #define VT_TAX_RATE 0.06
  40. #define CA_TAX_RATE 0.07
  41. #define DEFAULT_TAX_RATE 0.08
  42. #define NAME_SIZE 20
  43. #define TAX_STATE_SIZE 3
  44. #define FED_TAX_RATE 0.25
  45. #define FIRST_NAME_SIZE 10
  46. #define LAST_NAME_SIZE 10
  47.  
  48. // Define a global structure type to store an employee name
  49. // ... note how one could easily extend this to other parts
  50. // parts of a name: Middle, Nickname, Prefix, Suffix, etc.
  51. struct name
  52. {
  53. char firstName[FIRST_NAME_SIZE];
  54. char lastName [LAST_NAME_SIZE];
  55. };
  56.  
  57. // Define a global structure type to pass employee data between functions
  58. // Note that the structure type is global, but you don't want a variable
  59. // of that type to be global. Best to declare a variable of that type
  60. // in a function like main or another function and pass as needed.
  61.  
  62. // Note the "next" member has been added as a pointer to structure employee.
  63. // This allows us to point to another data item of this same type,
  64. // allowing us to set up and traverse through all the linked
  65. // list nodes, with each node containing the employee information below.
  66. struct employee
  67. {
  68. struct name empName;
  69. char taxState [TAX_STATE_SIZE];
  70. long int clockNumber;
  71. float wageRate;
  72. float hours;
  73. float overtimeHrs;
  74. float grossPay;
  75. float stateTax;
  76. float fedTax;
  77. float netPay;
  78. struct employee * next;
  79. };
  80.  
  81. // this structure type defines the totals of all floating point items
  82. // so they can be totaled and used also to calculate averages
  83. struct totals
  84. {
  85. float total_wageRate;
  86. float total_hours;
  87. float total_overtimeHrs;
  88. float total_grossPay;
  89. float total_stateTax;
  90. float total_fedTax;
  91. float total_netPay;
  92. };
  93.  
  94. // this structure type defines the min and max values of all floating
  95. // point items so they can be display in our final report
  96. struct min_max
  97. {
  98. float min_wageRate;
  99. float min_hours;
  100. float min_overtimeHrs;
  101. float min_grossPay;
  102. float min_stateTax;
  103. float min_fedTax;
  104. float min_netPay;
  105. float max_wageRate;
  106. float max_hours;
  107. float max_overtimeHrs;
  108. float max_grossPay;
  109. float max_stateTax;
  110. float max_fedTax;
  111. float max_netPay;
  112. };
  113.  
  114. // define prototypes here for each function except main
  115. struct employee * getEmpData (void);
  116. int isEmployeeSize (struct employee * head_ptr);
  117. void calcOvertimeHrs (struct employee * head_ptr);
  118. void calcGrossPay (struct employee * head_ptr);
  119. void printHeader (void);
  120. void printEmp (struct employee * head_ptr);
  121. void calcStateTax (struct employee * head_ptr);
  122. void calcFedTax (struct employee * head_ptr);
  123. void calcNetPay (struct employee * head_ptr);
  124. void calcEmployeeTotals (struct employee * head_ptr,
  125. struct totals * emp_totals_ptr);
  126.  
  127. void calcEmployeeMinMax (struct employee * head_ptr,
  128. struct min_max * emp_minMax_ptr);
  129.  
  130. void printEmpStatistics (struct totals * emp_totals_ptr,
  131. struct min_max * emp_minMax_ptr,
  132. int theSize);
  133.  
  134. int main ()
  135. {
  136.  
  137. // ******************************************************************
  138. // set up head pointer in the main function to point to the
  139. // start of the dynamically allocated linked list nodes that will be
  140. // created and stored in the Heap area.
  141. // ******************************************************************
  142. struct employee * head_ptr; // always points to first linked list node
  143.  
  144. int theSize; // number of employees processed
  145.  
  146. // set up structure to store totals and initialize all to zero
  147. struct totals employeeTotals = {0,0,0,0,0,0,0};
  148.  
  149. // pointer to the employeeTotals structure
  150. struct totals * emp_totals_ptr = &employeeTotals;
  151.  
  152. // set up structure to store min and max values and initialize all to zero
  153. struct min_max employeeMinMax = {0,0,0,0,0,0,0,0,0,0,0,0,0,0};
  154.  
  155. // pointer to the employeeMinMax structure
  156. struct min_max * emp_minMax_ptr = &employeeMinMax;
  157.  
  158. // ********************************************************************
  159. // Read the employee input and dynamically allocate and set up our
  160. // linked list in the Heap area. The address of the first linked
  161. // list item representing our first employee will be returned and
  162. // its value is set in our head_ptr. We can then use the head_ptr
  163. // throughout the rest of this program anytime we want to get to get
  164. // to the beginning of our linked list.
  165. // ********************************************************************
  166.  
  167. head_ptr = getEmpData ();
  168.  
  169. // ********************************************************************
  170. // With the head_ptr now pointing to the first linked list node, we
  171. // can pass it to any function who needs to get to the starting point
  172. // of the linked list in the Heap. From there, functions can traverse
  173. // through the linked list to access and/or update each employee.
  174. //
  175. // Important: Don't update the head_ptr ... otherwise, you could lose
  176. // the address in the heap of the first linked list node.
  177. //
  178. // ********************************************************************
  179.  
  180. // determine how many employees are in our linked list
  181.  
  182. theSize = isEmployeeSize (head_ptr);
  183.  
  184. // Skip all the function calls to process the data if there
  185. // was no employee information to read in the input
  186. if (theSize <= 0)
  187. {
  188. // print a user friendly message and skip the rest of the processing
  189. printf("\n\n**** There was no employee input to process ***\n");
  190. }
  191.  
  192. else // there are employees to be processed
  193. {
  194.  
  195. // *********************************************************
  196. // Perform calculations and print out information as needed
  197. // *********************************************************
  198.  
  199. // Calculate the overtime hours
  200. calcOvertimeHrs (head_ptr);
  201.  
  202. // Calculate the weekly gross pay
  203. calcGrossPay (head_ptr);
  204.  
  205. // Calculate the state tax
  206. calcStateTax (head_ptr);
  207.  
  208. // Calculate the federal tax
  209. calcFedTax (head_ptr);
  210.  
  211. // Calculate the net pay after taxes
  212. calcNetPay (head_ptr);
  213.  
  214. // *********************************************************
  215. // Keep a running sum of the employee totals
  216. //
  217. // Note the & to specify the address of the employeeTotals
  218. // structure. Needed since pointers work with addresses.
  219. // Unlike array names, C does not see structure names
  220. // as address, hence the need for using the &employeeTotals
  221. // which the complier sees as "address of" employeeTotals
  222. // *********************************************************
  223. calcEmployeeTotals (head_ptr,
  224. &employeeTotals);
  225.  
  226. // *****************************************************************
  227. // Keep a running update of the employee minimum and maximum values
  228. //
  229. // Note we are passing the address of the MinMax structure
  230. // *****************************************************************
  231. calcEmployeeMinMax (head_ptr,
  232. &employeeMinMax);
  233.  
  234. // Print the column headers
  235. printHeader();
  236.  
  237. // print out final information on each employee
  238. printEmp (head_ptr);
  239.  
  240. // **************************************************
  241. // print the totals and averages for all float items
  242. //
  243. // Note that we are passing the addresses of the
  244. // the two structures
  245. // **************************************************
  246. printEmpStatistics (&employeeTotals,
  247. &employeeMinMax,
  248. theSize);
  249. }
  250.  
  251. // indicate that the program completed all processing
  252. printf ("\n\n *** End of Program *** \n");
  253.  
  254. return (0); // success
  255.  
  256. } // main
  257.  
  258. //**************************************************************
  259. // Function: getEmpData
  260. //
  261. // Purpose: Obtains input from user: employee name (first an last),
  262. // tax state, clock number, hourly wage, and hours worked
  263. // in a given week.
  264. //
  265. // Information in stored in a dynamically created linked
  266. // list for all employees.
  267. //
  268. // Parameters: void
  269. //
  270. // Returns:
  271. //
  272. // head_ptr - a pointer to the beginning of the dynamically
  273. // created linked list that contains the initial
  274. // input for each employee.
  275. //
  276. //**************************************************************
  277.  
  278. struct employee * getEmpData (void)
  279. {
  280.  
  281. char answer[80]; // user prompt response
  282. int more_data = 1; // a flag to indicate if another employee
  283. // needs to be processed
  284. char value; // the first char of the user prompt response
  285.  
  286. struct employee *current_ptr, // pointer to current node
  287. *head_ptr; // always points to first node
  288.  
  289. // Set up storage for first node
  290. head_ptr = (struct employee *) malloc (sizeof(struct employee));
  291. current_ptr = head_ptr;
  292.  
  293. // process while there is still input
  294. while (more_data)
  295. {
  296.  
  297. // read in employee first and last name
  298. printf ("\nEnter employee first name: ");
  299. scanf ("%s", current_ptr->empName.firstName);
  300. printf ("\nEnter employee last name: ");
  301. scanf ("%s", current_ptr->empName.lastName);
  302.  
  303. // read in employee tax state
  304. printf ("\nEnter employee two character tax state: ");
  305. scanf ("%s", current_ptr->taxState);
  306.  
  307. // read in employee clock number
  308. printf("\nEnter employee clock number: ");
  309. scanf("%li", & current_ptr -> clockNumber);
  310.  
  311. // read in employee wage rate
  312. printf("\nEnter employee hourly wage: ");
  313. scanf("%f", & current_ptr -> wageRate);
  314.  
  315. // read in employee hours worked
  316. printf("\nEnter hours worked this week: ");
  317. scanf("%f", & current_ptr -> hours);
  318.  
  319. // ask user if they would like to add another employee
  320. printf("\nWould you like to add another employee? (y/n): ");
  321. scanf("%s", answer);
  322.  
  323. // check first character for a 'Y' for yes
  324. // Ask user if they want to add another employee
  325. if ((value = toupper(answer[0])) != 'Y')
  326. {
  327. // no more employees to process
  328. current_ptr->next = (struct employee *) NULL;
  329. more_data = 0;
  330. }
  331. else // Yes, another employee
  332. {
  333. // set the next pointer of the current node to point to the new node
  334. current_ptr->next = (struct employee *) malloc (sizeof(struct employee));
  335. // move the current node pointer to the new node
  336. current_ptr = current_ptr->next;
  337. }
  338.  
  339. } // while
  340.  
  341. return(head_ptr);
  342. }
  343.  
  344. //*************************************************************
  345. // Function: isEmployeeSize
  346. //
  347. // Purpose: Traverses the linked list and keeps a running count
  348. // on how many employees are currently in our list.
  349. //
  350. // Parameters:
  351. //
  352. // head_ptr - pointer to the initial node in our linked list
  353. //
  354. // Returns:
  355. //
  356. // theSize - the number of employees in our linked list
  357. //
  358. //**************************************************************
  359.  
  360. int isEmployeeSize (struct employee * head_ptr)
  361. {
  362.  
  363. struct employee * current_ptr; // pointer to current node
  364. int theSize; // number of link list nodes
  365. // (i.e., employees)
  366.  
  367. theSize = 0; // initialize
  368.  
  369. // assume there is no data if the first node does
  370. // not have an employee name
  371. if (head_ptr->empName.firstName[0] != '\0')
  372. {
  373.  
  374. // traverse through the linked list, keep a running count of nodes
  375. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  376. {
  377.  
  378. ++theSize; // employee node found, increment
  379.  
  380. } // for
  381. }
  382.  
  383. return (theSize); // number of nodes (i.e., employees)
  384.  
  385.  
  386. } // isEmployeeSize
  387.  
  388. //**************************************************************
  389. // Function: printHeader
  390. //
  391. // Purpose: Prints the initial table header information.
  392. //
  393. // Parameters: none
  394. //
  395. // Returns: void
  396. //
  397. //**************************************************************
  398.  
  399. void printHeader (void)
  400. {
  401.  
  402. printf ("\n\n*** Pay Calculator ***\n");
  403.  
  404. // print the table header
  405. printf("\n--------------------------------------------------------------");
  406. printf("-------------------");
  407. printf("\nName Tax Clock# Wage Hours OT Gross ");
  408. printf(" State Fed Net");
  409. printf("\n State Pay ");
  410. printf(" Tax Tax Pay");
  411.  
  412. printf("\n--------------------------------------------------------------");
  413. printf("-------------------");
  414.  
  415. } // printHeader
  416.  
  417. //*************************************************************
  418. // Function: printEmp
  419. //
  420. // Purpose: Prints out all the information for each employee
  421. // in a nice and orderly table format.
  422. //
  423. // Parameters:
  424. //
  425. // head_ptr - pointer to the beginning of our linked list
  426. //
  427. // Returns: void
  428. //
  429. //**************************************************************
  430.  
  431. void printEmp (struct employee * head_ptr)
  432. {
  433.  
  434.  
  435. // Used to format the employee name
  436. char name [FIRST_NAME_SIZE + LAST_NAME_SIZE + 1];
  437.  
  438. struct employee * current_ptr; // pointer to current node
  439.  
  440. // traverse through the linked list to process each employee
  441. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  442. {
  443.  
  444. strcpy (name, current_ptr->empName.firstName);
  445. strcat (name, " "); // add a space between first and last names
  446. strcat (name, current_ptr->empName.lastName);
  447.  
  448. // Print out current employee in the current linked list node
  449. printf("\n%-20.20s %-2.2s %06li %5.2f %4.1f %4.1f %7.2f %6.2f %7.2f %8.2f",
  450. name, current_ptr->taxState, current_ptr->clockNumber,
  451. current_ptr->wageRate, current_ptr->hours,
  452. current_ptr->overtimeHrs, current_ptr->grossPay,
  453. current_ptr->stateTax, current_ptr->fedTax,
  454. current_ptr->netPay);
  455.  
  456. } // for
  457.  
  458. } // printEmp
  459.  
  460. //*************************************************************
  461. // Function: printEmpStatistics
  462. //
  463. // Purpose: Prints out the summary totals and averages of all
  464. // floating point value items for all employees
  465. // that have been processed. It also prints
  466. // out the min and max values.
  467. //
  468. // Parameters:
  469. //
  470. // emp_totals_ptr - pointer to a structure containing a running total
  471. // of all employee floating point items
  472. //
  473. // emp_minMax_ptr - pointer to a structure containing
  474. // the minimum and maximum values of all
  475. // employee floating point items
  476. //
  477. // theSize - the total number of employees processed, used
  478. // to check for zero or negative divide condition.
  479. //
  480. // Returns: void
  481. //
  482. //**************************************************************
  483.  
  484. void printEmpStatistics (struct totals * emp_totals_ptr,
  485. struct min_max * emp_minMax_ptr,
  486. int theSize)
  487. {
  488.  
  489. // print a separator line
  490. printf("\n--------------------------------------------------------------");
  491. printf("-------------------");
  492.  
  493. // print the totals for all the floating point items
  494. printf("\nTotals: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  495. emp_totals_ptr->total_wageRate,
  496. emp_totals_ptr->total_hours,
  497. emp_totals_ptr->total_overtimeHrs,
  498. emp_totals_ptr->total_grossPay,
  499. emp_totals_ptr->total_stateTax,
  500. emp_totals_ptr->total_fedTax,
  501. emp_totals_ptr->total_netPay);
  502.  
  503. // make sure you don't divide by zero or a negative number
  504. if (theSize > 0)
  505. {
  506. // print the averages for all the floating point items
  507. printf("\nAverages: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  508. emp_totals_ptr->total_wageRate/theSize,
  509. emp_totals_ptr->total_hours/theSize,
  510. emp_totals_ptr->total_overtimeHrs/theSize,
  511. emp_totals_ptr->total_grossPay/theSize,
  512. emp_totals_ptr->total_stateTax/theSize,
  513. emp_totals_ptr->total_fedTax/theSize,
  514. emp_totals_ptr->total_netPay/theSize);
  515.  
  516. } // if
  517.  
  518. // print the min and max values for each item
  519.  
  520. printf("\nMinimum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  521. emp_minMax_ptr->min_wageRate,
  522. emp_minMax_ptr->min_hours,
  523. emp_minMax_ptr->min_overtimeHrs,
  524. emp_minMax_ptr->min_grossPay,
  525. emp_minMax_ptr->min_stateTax,
  526. emp_minMax_ptr->min_fedTax,
  527. emp_minMax_ptr->min_netPay);
  528.  
  529. printf("\nMaximum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  530. emp_minMax_ptr->max_wageRate,
  531. emp_minMax_ptr->max_hours,
  532. emp_minMax_ptr->max_overtimeHrs,
  533. emp_minMax_ptr->max_grossPay,
  534. emp_minMax_ptr->max_stateTax,
  535. emp_minMax_ptr->max_fedTax,
  536. emp_minMax_ptr->max_netPay);
  537.  
  538. // print out the total employees process
  539. printf ("\n\nThe total employees processed was: %i\n", theSize);
  540.  
  541. } // printEmpStatistics
  542.  
  543. //*************************************************************
  544. // Function: calcOvertimeHrs
  545. //
  546. // Purpose: Calculates the overtime hours worked by an employee
  547. // in a given week for each employee.
  548. //
  549. // Parameters:
  550. //
  551. // head_ptr - pointer to the beginning of our linked list
  552. //
  553. // Returns: void (the overtime hours gets updated by reference)
  554. //
  555. //**************************************************************
  556.  
  557. void calcOvertimeHrs (struct employee * head_ptr)
  558. {
  559.  
  560. struct employee * current_ptr; // pointer to current node
  561.  
  562. // traverse through the linked list to calculate overtime hours
  563. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  564. {
  565. // Any overtime ?
  566. if (current_ptr->hours >= STD_HOURS)
  567. {
  568. current_ptr->overtimeHrs = current_ptr->hours - STD_HOURS;
  569. }
  570. else // no overtime
  571. {
  572. current_ptr->overtimeHrs = 0;
  573. }
  574.  
  575.  
  576. } // for
  577.  
  578.  
  579. } // calcOvertimeHrs
  580.  
  581. //*************************************************************
  582. // Function: calcGrossPay
  583. //
  584. // Purpose: Calculates the gross pay based on the the normal pay
  585. // and any overtime pay for a given week for each
  586. // employee.
  587. //
  588. // Parameters:
  589. //
  590. // head_ptr - pointer to the beginning of our linked list
  591. //
  592. // Returns: void (the gross pay gets updated by reference)
  593. //
  594. //**************************************************************
  595.  
  596. void calcGrossPay (struct employee * head_ptr)
  597. {
  598.  
  599. float theNormalPay; // normal pay without any overtime hours
  600. float theOvertimePay; // overtime pay
  601.  
  602. struct employee * current_ptr; // pointer to current node
  603.  
  604. // traverse through the linked list to calculate gross pay
  605. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  606. {
  607. // calculate normal pay and any overtime pay
  608. theNormalPay = current_ptr->wageRate *
  609. (current_ptr->hours - current_ptr->overtimeHrs);
  610. theOvertimePay = current_ptr->overtimeHrs *
  611. (OT_RATE * current_ptr->wageRate);
  612.  
  613. // calculate gross pay for employee as normalPay + any overtime pay
  614. current_ptr->grossPay = theNormalPay + theOvertimePay;
  615.  
  616. }
  617.  
  618. } // calcGrossPay
  619.  
  620. //*************************************************************
  621. // Function: calcStateTax
  622. //
  623. // Purpose: Calculates the State Tax owed based on gross pay
  624. // for each employee. State tax rate is based on the
  625. // the designated tax state based on where the
  626. // employee is actually performing the work. Each
  627. // state decides their tax rate.
  628. //
  629. // Parameters:
  630. //
  631. // head_ptr - pointer to the beginning of our linked list
  632. //
  633. // Returns: void (the state tax gets updated by reference)
  634. //
  635. //**************************************************************
  636.  
  637. void calcStateTax (struct employee * head_ptr)
  638. {
  639.  
  640. struct employee * current_ptr; // pointer to current node
  641.  
  642. // traverse through the linked list to calculate the state tax
  643. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  644. {
  645. // Make sure tax state is all uppercase
  646. if (islower(current_ptr->taxState[0]))
  647. current_ptr->taxState[0] = toupper(current_ptr->taxState[0]);
  648. if (islower(current_ptr->taxState[1]))
  649. current_ptr->taxState[1] = toupper(current_ptr->taxState[1]);
  650.  
  651. //Calculate state tax based on where employee resides
  652. if (strcmp(current_ptr->taxState, "MA")==0)
  653. current_ptr->stateTax = current_ptr->grossPay * MA_TAX_RATE;
  654. else if (strcmp(current_ptr->taxState, "CA")==0)
  655. current_ptr->stateTax = current_ptr->grossPay * CA_TAX_RATE;
  656. else if (strcmp(current_ptr->taxState, "NH")==0)
  657. current_ptr->stateTax = current_ptr->grossPay * NH_TAX_RATE;
  658. else if (strcmp(current_ptr->taxState, "VT")==0)
  659. current_ptr->stateTax = current_ptr->grossPay * VT_TAX_RATE;
  660.  
  661. //Any other state
  662. else current_ptr->stateTax = current_ptr->grossPay * DEFAULT_TAX_RATE;
  663.  
  664. } // for
  665.  
  666. } // calcStateTax
  667.  
  668. //*************************************************************
  669. // Function: calcFedTax
  670. //
  671. // Purpose: Calculates the Federal Tax owed based on the gross
  672. // pay for each employee
  673. //
  674. // Parameters:
  675. //
  676. // head_ptr - pointer to the beginning of our linked list
  677. //
  678. // Returns: void (the federal tax gets updated by reference)
  679. //
  680. //**************************************************************
  681.  
  682. void calcFedTax (struct employee * head_ptr)
  683. {
  684.  
  685. struct employee * current_ptr; // pointer to current node
  686.  
  687. //traverse through the linked list to calculate fed tax
  688. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  689. {
  690.  
  691. current_ptr->fedTax = current_ptr->grossPay * FED_TAX_RATE;
  692.  
  693. } //for
  694.  
  695. } // calcFedTax
  696.  
  697. //*************************************************************
  698. // Function: calcNetPay
  699. //
  700. // Purpose: Calculates the net pay as the gross pay minus any
  701. // state and federal taxes owed for each employee.
  702. // Essentially, their "take home" pay.
  703. //
  704. // Parameters:
  705. //
  706. // head_ptr - pointer to the beginning of our linked list
  707. //
  708. // Returns: void (the net pay gets updated by reference)
  709. //
  710. //**************************************************************
  711.  
  712. void calcNetPay (struct employee * head_ptr)
  713. {
  714. float theTotalTaxes; // the total state and federal tax
  715.  
  716. struct employee * current_ptr; // pointer to current node
  717.  
  718. // traverse through the linked list to calculate the net pay
  719. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  720. {
  721. // calculate the total state and federal taxes
  722. theTotalTaxes = current_ptr->stateTax + current_ptr->fedTax;
  723.  
  724. // calculate the net pay
  725. current_ptr->netPay = current_ptr->grossPay - theTotalTaxes;
  726.  
  727. } // for
  728.  
  729. } // calcNetPay
  730.  
  731. //*************************************************************
  732. // Function: calcEmployeeTotals
  733. //
  734. // Purpose: Performs a running total (sum) of each employee
  735. // floating point member item stored in our linked list
  736. //
  737. // Parameters:
  738. //
  739. // head_ptr - pointer to the beginning of our linked list
  740. // emp_totals_ptr - pointer to a structure containing the
  741. // running totals of each floating point
  742. // member for all employees in our linked
  743. // list
  744. //
  745. // Returns:
  746. //
  747. // void (the employeeTotals structure gets updated by reference)
  748. //
  749. //**************************************************************
  750.  
  751. void calcEmployeeTotals (struct employee * head_ptr,
  752. struct totals * emp_totals_ptr)
  753. {
  754.  
  755. struct employee * current_ptr; // pointer to current node
  756.  
  757. // traverse through the linked list to calculate a running
  758. // sum of each employee floating point member item
  759. for (current_ptr = head_ptr; current_ptr; current_ptr = current_ptr->next)
  760. {
  761. // add current employee data to our running totals
  762. emp_totals_ptr->total_wageRate += current_ptr->wageRate;
  763. emp_totals_ptr->total_hours += current_ptr->hours;
  764. emp_totals_ptr->total_overtimeHrs += current_ptr->overtimeHrs;
  765. emp_totals_ptr->total_grossPay += current_ptr->grossPay;
  766. emp_totals_ptr->total_stateTax += current_ptr->stateTax;
  767. emp_totals_ptr->total_fedTax += current_ptr->fedTax;
  768. emp_totals_ptr->total_netPay += current_ptr->netPay;
  769.  
  770. } // for
  771.  
  772. } // calcEmployeeTotals
  773.  
  774. //*************************************************************
  775. // Function: calcEmployeeMinMax
  776. //
  777. // Purpose: Accepts various floating point values from an
  778. // employee and adds to a running update of min
  779. // and max values
  780. //
  781. // Parameters:
  782. //
  783. // head_ptr - pointer to the beginning of our linked list
  784. // emp_minMax_ptr - pointer to the min/max structure
  785. //
  786. // Returns:
  787. //
  788. // void (employeeMinMax structure updated by reference)
  789. //
  790. //**************************************************************
  791.  
  792. void calcEmployeeMinMax (struct employee * head_ptr,
  793. struct min_max * emp_minMax_ptr)
  794. {
  795.  
  796. struct employee * current_ptr; // pointer to current node
  797.  
  798. // set to first employee, our initial linked list node
  799. current_ptr = head_ptr;
  800.  
  801. // set the min to the first employee members
  802. emp_minMax_ptr->min_wageRate = current_ptr->wageRate;
  803. emp_minMax_ptr->min_hours = current_ptr->hours;
  804. emp_minMax_ptr->min_overtimeHrs = current_ptr->overtimeHrs;
  805. emp_minMax_ptr->min_grossPay = current_ptr->grossPay;
  806. emp_minMax_ptr->min_stateTax = current_ptr->stateTax;
  807. emp_minMax_ptr->min_fedTax = current_ptr->fedTax;
  808. emp_minMax_ptr->min_netPay = current_ptr->netPay;
  809.  
  810. // set the max to the first employee members
  811. emp_minMax_ptr->max_wageRate = current_ptr->wageRate;
  812. emp_minMax_ptr->max_hours = current_ptr->hours;
  813. emp_minMax_ptr->max_overtimeHrs = current_ptr->overtimeHrs;
  814. emp_minMax_ptr->max_grossPay = current_ptr->grossPay;
  815. emp_minMax_ptr->max_stateTax = current_ptr->stateTax;
  816. emp_minMax_ptr->max_fedTax = current_ptr->fedTax;
  817. emp_minMax_ptr->max_netPay = current_ptr->netPay;
  818.  
  819. // move to the next employee
  820. current_ptr = current_ptr->next;
  821.  
  822. // traverse the linked list
  823. // compare the rest of the employees to each other for min and max
  824. for (; current_ptr; current_ptr = current_ptr->next)
  825. {
  826.  
  827. // check if current Wage Rate is the new min and/or max
  828. if (current_ptr->wageRate < emp_minMax_ptr->min_wageRate)
  829. {
  830. emp_minMax_ptr->min_wageRate = current_ptr->wageRate;
  831. }
  832.  
  833. if (current_ptr->wageRate > emp_minMax_ptr->max_wageRate)
  834. {
  835. emp_minMax_ptr->max_wageRate = current_ptr->wageRate;
  836. }
  837.  
  838. // check if current Hours is the new min and/or max
  839. if (current_ptr->hours < emp_minMax_ptr->min_hours)
  840. {
  841. emp_minMax_ptr->min_hours = current_ptr->hours;
  842. }
  843.  
  844. if (current_ptr->hours > emp_minMax_ptr->max_hours)
  845. {
  846. emp_minMax_ptr->max_hours = current_ptr->hours;
  847. }
  848.  
  849. // check if current Overtime Hours is the new min and/or max
  850. if (current_ptr->overtimeHrs < emp_minMax_ptr->min_overtimeHrs)
  851. {
  852. emp_minMax_ptr->min_overtimeHrs = current_ptr->overtimeHrs;
  853. }
  854.  
  855. if (current_ptr->overtimeHrs > emp_minMax_ptr->max_overtimeHrs)
  856. {
  857. emp_minMax_ptr->max_overtimeHrs = current_ptr->overtimeHrs;
  858. }
  859.  
  860. // check if current Gross Pay is the new min and/or max
  861. if (current_ptr->grossPay < emp_minMax_ptr->min_grossPay)
  862. {
  863. emp_minMax_ptr->min_grossPay = current_ptr->grossPay;
  864. }
  865.  
  866. if (current_ptr->grossPay > emp_minMax_ptr->max_grossPay)
  867. {
  868. emp_minMax_ptr->max_grossPay = current_ptr->grossPay;
  869. }
  870.  
  871. // check if current State Tax is the new min and/or max
  872. if (current_ptr->stateTax < emp_minMax_ptr->min_stateTax)
  873. {
  874. emp_minMax_ptr->min_stateTax = current_ptr->stateTax;
  875. }
  876.  
  877. if (current_ptr->stateTax > emp_minMax_ptr->max_stateTax)
  878. {
  879. emp_minMax_ptr->max_stateTax = current_ptr->stateTax;
  880. }
  881.  
  882. // check if current Federal Tax is the new min and/or max
  883. if (current_ptr->fedTax < emp_minMax_ptr->min_fedTax)
  884. {
  885. emp_minMax_ptr->min_fedTax = current_ptr->fedTax;
  886. }
  887.  
  888. if (current_ptr->fedTax > emp_minMax_ptr->max_fedTax)
  889. {
  890. emp_minMax_ptr->max_fedTax = current_ptr->fedTax;
  891. }
  892.  
  893. // check if current Net Pay is the new min and/or max
  894. if (current_ptr->netPay < emp_minMax_ptr->min_netPay)
  895. {
  896. emp_minMax_ptr->min_netPay = current_ptr->netPay;
  897. }
  898.  
  899. if (current_ptr->netPay > emp_minMax_ptr->max_netPay)
  900. {
  901. emp_minMax_ptr->max_netPay = current_ptr->netPay;
  902. }
  903.  
  904. } // for
  905.  
  906. } // calcEmployeeMinMax
Success #stdin #stdout 0s 5284KB
stdin
Connie
Cobol
MA
98401
10.60
51.0
Y
Mary
Apl
NH
526488
9.75
42.5
Y
Frank
Fortran
VT
765349
10.50
37.0
Y
Jeff
Ada
NY
34645
12.25
45
Y
Anton
Pascal
CA
127615
8.35
40.0
N
stdout
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 
Enter employee first name: 
Enter employee last name: 
Enter employee two character tax state: 
Enter employee clock number: 
Enter employee hourly wage: 
Enter hours worked this week: 
Would you like to add another employee? (y/n): 

*** 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

The total employees processed was: 5


 *** End of Program ***