fork download
  1. #include <stdio.h>
  2.  
  3. #define NUM_EMPLOYEES 5
  4. #define OVERTIME_THRESHOLD 40.0
  5. #define OVERTIME_RATE 1.5
  6. #define FEDERAL_TAX_RATE 0.25
  7.  
  8. // Employee structure
  9. typedef struct {
  10. char name[20];
  11. char state[3];
  12. char clockNum[7];
  13. double wage;
  14. double hours;
  15. double overtime;
  16. double grossPay;
  17. double stateTax;
  18. double federalTax;
  19. double netPay;
  20. } Employee;
  21.  
  22. void calculatePayroll(Employee employees[]) {
  23. double totalWage = 0, totalHours = 0, totalOvertime = 0;
  24. double totalGross = 0, totalStateTax = 0, totalFedTax = 0, totalNet = 0;
  25. double minGross = 1e9, maxGross = -1e9;
  26. double minNet = 1e9, maxNet = -1e9;
  27.  
  28. printf("*** Pay Calculator ***\n");
  29. printf("---------------------------------------------------------------------------------\n");
  30. printf("Name Tax Clock# Wage Hours OT Gross State Fed Net\n");
  31. printf(" State Pay Tax Tax Pay\n");
  32. printf("---------------------------------------------------------------------------------\n");
  33.  
  34. for (int i = 0; i < NUM_EMPLOYEES; i++) {
  35. Employee *e = &employees[i];
  36. e->overtime = (e->hours > OVERTIME_THRESHOLD) ? e->hours - OVERTIME_THRESHOLD : 0;
  37. double overtimePay = e->overtime * (e->wage * OVERTIME_RATE);
  38. double regularPay = (e->hours - e->overtime) * e->wage;
  39. e->grossPay = regularPay + overtimePay;
  40. e->stateTax = e->grossPay * 0.05; // Assuming 5% state tax for all employees
  41. e->federalTax = e->grossPay * FEDERAL_TAX_RATE;
  42. e->netPay = e->grossPay - e->stateTax - e->federalTax;
  43.  
  44. // Update totals
  45. totalWage += e->wage;
  46. totalHours += e->hours;
  47. totalOvertime += e->overtime;
  48. totalGross += e->grossPay;
  49. totalStateTax += e->stateTax;
  50. totalFedTax += e->federalTax;
  51. totalNet += e->netPay;
  52.  
  53. if (e->grossPay < minGross) minGross = e->grossPay;
  54. if (e->grossPay > maxGross) maxGross = e->grossPay;
  55. if (e->netPay < minNet) minNet = e->netPay;
  56. if (e->netPay > maxNet) maxNet = e->netPay;
  57.  
  58. printf("%-18s %2s %6s %5.2f %5.1f %4.1f %7.2f %5.2f %6.2f %8.2f\n",
  59. e->name, e->state, e->clockNum, e->wage, e->hours, e->overtime,
  60. e->grossPay, e->stateTax, e->federalTax, e->netPay);
  61. }
  62.  
  63. printf("---------------------------------------------------------------------------------\n");
  64. printf("Totals: %5.2f %5.1f %4.1f %7.2f %5.2f %6.2f %8.2f\n",
  65. totalWage / NUM_EMPLOYEES, totalHours, totalOvertime, totalGross,
  66. totalStateTax, totalFedTax, totalNet);
  67. printf("Averages: %5.2f %5.1f %4.1f %7.2f %5.2f %6.2f %8.2f\n",
  68. totalWage / NUM_EMPLOYEES, totalHours / NUM_EMPLOYEES, totalOvertime / NUM_EMPLOYEES,
  69. totalGross / NUM_EMPLOYEES, totalStateTax / NUM_EMPLOYEES, totalFedTax / NUM_EMPLOYEES, totalNet / NUM_EMPLOYEES);
  70. printf("Minimum: %5.2f %5.1f %4.1f %7.2f %5.2f %6.2f %8.2f\n",
  71. employees[4].wage, employees[2].hours, 0.0, minGross, 0.0, employees[4].federalTax, minNet);
  72. printf("Maximum: %5.2f %5.1f %4.1f %7.2f %5.2f %6.2f %8.2f\n",
  73. employees[3].wage, employees[0].hours, employees[0].overtime, maxGross, employees[3].stateTax, employees[0].federalTax, maxNet);
  74. }
  75.  
  76. int main() {
  77. Employee employees[NUM_EMPLOYEES] = {
  78. {"Connie Cobol", "MA", "098401", 10.60, 51.0},
  79. {"Mary Apl", "NH", "526488", 9.75, 42.5},
  80. {"Frank Fortran", "VT", "765349", 10.50, 37.0},
  81. {"Jeff Ada", "NY", "034645", 12.25, 45.0},
  82. {"Anton Pascal", "CA", "127615", 8.35, 40.0}
  83. };
  84.  
  85. calculatePayroll(employees);
  86. return 0;
  87. }
  88.  
Success #stdin #stdout 0s 5276KB
stdin
51.0
42.5
37.0
45.0
40.0
stdout
*** 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.72    419.23
Mary Apl           NH   526488   9.75   42.5   2.5   426.56  21.33  106.64    298.59
Frank Fortran      VT   765349  10.50   37.0   0.0   388.50  19.43   97.12    271.95
Jeff Ada           NY   034645  12.25   45.0   5.0   581.88  29.09  145.47    407.31
Anton Pascal       CA   127615   8.35   40.0   0.0   334.00  16.70   83.50    233.80
---------------------------------------------------------------------------------
Totals:                          10.29 215.5 18.5 2329.84 116.49 582.46  1630.89
Averages:                        10.29  43.1  3.7  465.97 23.30 116.49   326.18
Minimum:                          8.35  37.0  0.0  334.00  0.00  83.50   233.80
Maximum:                         12.25  51.0 11.0  598.90 29.09 149.72   419.23