fork download
  1. //********************************************************
  2. //
  3. // Assignment 11 - Object Oriented Design
  4. //
  5. // Name: Raissa Almeida Beckenkamp
  6. //
  7. // Class: C Programming, Fall 2025
  8. //
  9. // Date: November 30, 2025
  10. //
  11. // Description: An object oriented program design using
  12. // C++ that will process our existing set of employees.
  13. // It utilizes a class called Employee and generates an
  14. // array of objects that are used to store, calculate,
  15. // and print out a simple report of inputted and calculated
  16. // values.
  17. //
  18. //
  19. // Object Oriented Design (using C++)
  20. //
  21. //********************************************************
  22.  
  23. #include <iomanip> // std::setprecision, std::setw
  24. #include <iostream> // std::cout, std::fixed
  25. #include <string> // string functions
  26.  
  27. // define constants
  28. #define EMP_SIZE 5
  29. #define STD_HOURS 40.0
  30. #define OT_RATE 1.5
  31. #define MA_TAX_RATE 0.05
  32. #define NH_TAX_RATE 0.0
  33. #define VT_TAX_RATE 0.06
  34. #define CA_TAX_RATE 0.07
  35. #define DEFAULT_TAX_RATE 0.08
  36. #define NAME_SIZE 20
  37. #define TAX_STATE_SIZE 3
  38. #define FED_TAX_RATE 0.25
  39. #define FIRST_NAME_SIZE 10
  40. #define LAST_NAME_SIZE 10
  41.  
  42. using namespace std;
  43.  
  44. // class Employee
  45. class Employee
  46. {
  47. private:
  48.  
  49. // private data available only to member functions
  50.  
  51. string firstName; // Employee First Name
  52. string lastName; // Employee Last Name
  53. string taxState; // Employee Tax State
  54. int clockNumber; // Employee Clock Number
  55. float wageRate; // Hourly Wage Rate
  56. float hours; // Hours worked in a week
  57. float overTimeHrs; // Overtime Hours worked
  58. float grossPay; // Weekly Gross Pay
  59. float stateTax; // State Tax
  60. float fedTax; // Fed Tax
  61. float netPay; // Net Pay
  62.  
  63. // private member function to calculate Overtime Hours
  64. float calcOverTimeHrs ( )
  65. {
  66. // Calculate the overtime hours for the week
  67. if (hours > STD_HOURS)
  68. overTimeHrs = hours - STD_HOURS; // ot hours
  69. else
  70. overTimeHrs = 0; // no ot hours
  71.  
  72. // the calculated overtime hours
  73. return (overTimeHrs);
  74.  
  75. } // calcOverTimeHrs
  76.  
  77. // private member function to calculate Gross Pay
  78. float calcGrossPay ( )
  79. {
  80. // Process gross pay based on if there is overtime
  81. if (overTimeHrs > 0)
  82. {
  83. // overtime
  84. grossPay = (STD_HOURS * wageRate) // normal pay
  85. + (overTimeHrs * (wageRate * OT_RATE)); // ot pay
  86. }
  87. else // no overtime pay
  88. {
  89. grossPay = wageRate * hours; // normal pay
  90. }
  91.  
  92. // the calculated gross pay
  93. return (grossPay);
  94.  
  95. } // calcGrossPay
  96.  
  97. // private member function to calculate State Tax
  98. float calcStateTax ()
  99. {
  100.  
  101. float theStateTax; // calculated state tax
  102.  
  103. theStateTax = grossPay; // initialize to gross pay
  104.  
  105. // calculate state tax based on where employee resides
  106.  
  107. if (taxState.compare("MA") == 0)
  108. theStateTax *= MA_TAX_RATE;
  109. else if (taxState.compare("VT") == 0)
  110. theStateTax *= VT_TAX_RATE;
  111. else if (taxState.compare("NH") == 0)
  112. theStateTax *= NH_TAX_RATE;
  113. else if (taxState.compare("CA") == 0)
  114. theStateTax *= CA_TAX_RATE;
  115. else
  116. theStateTax *= DEFAULT_TAX_RATE; // any other state
  117.  
  118. // return the calculated state tax
  119. return (theStateTax);
  120.  
  121. } // calcStateTax
  122.  
  123. // private member function to calculate Federal Tax
  124. float calcFedTax ()
  125. {
  126.  
  127. float theFedTax; // The calculated Federal Tax
  128.  
  129. // Federal Tax is the same for all regardless of state
  130. theFedTax = grossPay * FED_TAX_RATE;
  131.  
  132. // return the calculated federal tax
  133. return (theFedTax);
  134.  
  135. } // calcFedTax
  136.  
  137. // private member function to calculate Net Pay
  138. float calcNetPay ()
  139. {
  140.  
  141. float theNetPay; // total take home pay (minus taxes)
  142. float theTotalTaxes; // total taxes owed
  143.  
  144. // calculate the total taxes owed
  145. theTotalTaxes = stateTax + fedTax;
  146.  
  147. // calculate the net pay
  148. theNetPay = grossPay - theTotalTaxes;
  149.  
  150. // return the calculated net pay
  151. return (theNetPay);
  152.  
  153. } // calcNetPay
  154.  
  155. public:
  156.  
  157. // public member functions that can be called
  158. // to access private data member items
  159.  
  160. // public no argument constructor with defaults
  161. Employee() {firstName=""; lastName=""; taxState="";
  162. clockNumber=0; wageRate=0; hours=0;}
  163.  
  164. // public constructor with arguments passed to it
  165. Employee (string myFirstName, string myLastName, string myTaxState,
  166. int myClockNumber, float myWageRate, float myHours);
  167.  
  168. ~Employee(); // destructor
  169.  
  170. // public getter function prototypes to retrieve private data
  171. string getFirstName();
  172. string getLastName();
  173. string getTaxState();
  174. int getClockNumber();
  175. float getWageRate();
  176. float getHours();
  177. float getOverTimeHrs();
  178. float getGrossPay();
  179.  
  180. // Added the missing public getter functions
  181. // TODO - Add public getter function prototype to retrieve stateTax
  182. float getStateTax();
  183.  
  184. // TODO - Add public getter function prototype to retrieve fedTax
  185. float getFedTax();
  186.  
  187. // TODO - Add public getter function prototype to retrieve netPay
  188. float getNetPay();
  189.  
  190. // member function prototype to print an Employee object
  191. void printEmployee(Employee e); // passes an object
  192.  
  193. }; // class Employee
  194.  
  195. // constructor with arguments
  196. Employee::Employee (string myFirstName, string myLastName, string myTaxState,
  197. int myClockNumber, float myWageRate, float myHours)
  198. {
  199. // initialize all member data items
  200. firstName = myFirstName; // input
  201. lastName = myLastName; // input
  202.  
  203. // Convert myTaxState to uppercase if entered in lowercase
  204. if (std::islower(myTaxState[0]))
  205. myTaxState[0] = std::toupper(myTaxState[0]);
  206. if (std::islower(myTaxState[1]))
  207. myTaxState[1] = std::toupper(myTaxState[1]);
  208.  
  209. taxState = myTaxState; // input
  210. clockNumber = myClockNumber; // input
  211. wageRate = myWageRate; // input
  212. hours = myHours; // input
  213. overTimeHrs = calcOverTimeHrs(); // calculated overtime hours
  214. grossPay = calcGrossPay(); // calculated gross pay
  215.  
  216. // Added the missing calls
  217. // TODO - set stateTax as the return from calcStateTax member function
  218. stateTax = calcStateTax(); // calculate State Tax
  219.  
  220. // TODO - set fedTax as the return from calcFedTax member function
  221. fedTax = calcFedTax(); // calculate Federal Tax
  222.  
  223. // TODO - set netPay as the return from calcNetPay member function
  224. netPay = calcNetPay(); // calculate Net Pay
  225.  
  226. } // Employee constructor
  227.  
  228. // Employee's destructor
  229. Employee::~Employee()
  230. {
  231. // nothing to print here, but could ...
  232. }
  233.  
  234. // A "getter" function that will retrieve the First Name
  235. string Employee::getFirstName() {
  236. return firstName;
  237. }
  238.  
  239. // A "getter" function that will retrieve the employee Last Name
  240. string Employee::getLastName() {
  241. return lastName;
  242. }
  243.  
  244. // A "getter" function that will retrieve the employee Tax State
  245. string Employee::getTaxState() {
  246. return taxState;
  247. }
  248.  
  249. // A "getter" function that will retrieve the employee Clock Number
  250. int Employee::getClockNumber() {
  251. return clockNumber;
  252. }
  253.  
  254. // A "getter" function that will retrieve the employee Wage Rate
  255. float Employee::getWageRate() {
  256. return wageRate;
  257. }
  258.  
  259. // A "getter" function that will retrieve the employee Hours Worked
  260. float Employee::getHours() {
  261. return hours;
  262. }
  263.  
  264. // A "getter" function that will retrieve the employee Overtime Hours
  265. float Employee::getOverTimeHrs() {
  266. return overTimeHrs;
  267. }
  268.  
  269. // A "getter" function that will retrieve the employee Gross Pay
  270. float Employee::getGrossPay() {
  271. return grossPay;
  272. }
  273.  
  274. // Added the missing public getter functions
  275. // TODO - Add a "getter" function that will retrieve the employee stateTax
  276. float Employee::getStateTax() {
  277. return stateTax;
  278. }
  279.  
  280. // TODO - Add a "getter" function that will retrieve the employee fedTax
  281. float Employee::getFedTax() {
  282. return fedTax;
  283. }
  284.  
  285. // TODO - Add a "getter" function that will retrieve the employee netPay
  286. float Employee::getNetPay() {
  287. return netPay;
  288. }
  289.  
  290. // a member function to print out the info in a given Employee object
  291. void Employee::printEmployee(Employee e) {
  292.  
  293. // Display the entered input on the Employee
  294. cout<<"\n\n *** Entered Details are *** \n";
  295. cout<<"\n First Name: "<< e.getFirstName();
  296. cout<<"\n Last Name: "<< e.getLastName();
  297. cout<<"\n Tax State: "<< e.getTaxState();
  298. cout <<"\n Clock Number: "<< e.getClockNumber();
  299. cout <<"\n Wage Rate: "<< e.getWageRate ();
  300. cout <<"\n Hours: "<< e.getHours ();
  301.  
  302. // Display the calculated values of the Employee
  303. cout<<"\n\n *** Calculated Values are *** \n";
  304.  
  305. // print out overtime hours based on the employee information entered
  306. cout <<"\n Overtime Hours : " << e.getOverTimeHrs();
  307.  
  308. // print out gross pay based on the employee information entered
  309. cout <<"\n Gross Pay : $" << e.getGrossPay();
  310.  
  311. // Added the missing code to print out calculated state & Federal tax & Net Pay
  312. // TODO - Add cout statement with call to stateTax getter function
  313. cout <<"\n State Tax : $" << e.getStateTax();
  314.  
  315. // TODO - Add cout statement with call to fedTax getter function
  316. cout <<"\n Federal Tax : $" << e.getFedTax();
  317.  
  318. // TODO - Add cout statement with call to netPay getter function
  319. cout <<"\n Net Pay : $" << e.getNetPay();
  320.  
  321. // add a new line to separate the next employee
  322. cout <<"\n";
  323.  
  324. } // printEmployee
  325.  
  326. // main function to start the processing
  327. int main ()
  328. {
  329. // local variables to collect user input
  330.  
  331. string myFirstName; // First Name to input
  332. string myLastName; // Last Name to input
  333. string myTaxState; // Tax State to input
  334. int myClockNumber; // Clock Number to input
  335. float myWageRate; // Wage Rate to input
  336. float myHours; // Hours to input
  337.  
  338. cout << fixed // fix the number of decimal digits
  339. << setprecision(2); // to 2
  340.  
  341. // Array of Objects to store each of our employees
  342. Employee e[EMP_SIZE];
  343.  
  344. // prompt for information to read in employee information
  345. for (int i = 0; i < EMP_SIZE; ++i)
  346. {
  347. // Enter Employee Information
  348. cout <<"\n\n Enter Employee First Name: ";
  349. cin>>myFirstName ;
  350. cout <<"\n Enter Employee Last Name: ";
  351. cin>>myLastName ;
  352. cout <<"\n Enter Employee Tax State: ";
  353. cin>>myTaxState ;
  354. cout<<"\n Enter Employee Clock Number: ";
  355. cin>>myClockNumber;
  356. cout <<"\n Enter Employee Hourly Wage Rate: ";
  357. cin>>myWageRate;
  358. cout <<"\n Enter Employee Hours Worked for the Week: ";
  359. cin>>myHours;
  360.  
  361. // Call our constructor to create an employee object
  362. // using the input entered above. The constructor
  363. // will also put into motion the execution of the
  364. // various private member functions which will
  365. // calculate the overtime, gross pay, state tax, federal
  366. // tax, and net pay for the current employee.
  367.  
  368. // The updated object will be returned and placed in the
  369. // the element of our array of objects named "e", using the index
  370. // of the current value of our loop index "i" ... thus: e[i]
  371. e[i] = {myFirstName, myLastName, myTaxState,
  372. myClockNumber, myWageRate, myHours};
  373.  
  374. // Call the printEmployee public member function to display all
  375. // the inputted and calculated values for the current employee
  376. e[i].printEmployee(e[i]);
  377.  
  378. } // for
  379.  
  380. return 0;
  381.  
  382. } // main
Success #stdin #stdout 0s 5316KB
stdin
Connie
Cobol
MA
98401
10.60
51.0
Mary
Apl
NH
526488
9.75
42.5
Frank
Fortran
VT
765349
10.50
37.0
Jeff
Ada
NY
34645
12.25
45
Anton
Pascal
CA
127615
8.35
40.0
stdout

 Enter Employee First Name: 
 Enter Employee Last Name: 
 Enter Employee Tax State: 
 Enter Employee Clock Number: 
 Enter Employee Hourly Wage Rate: 
 Enter Employee Hours Worked for the Week: 

 *** Entered Details are *** 

 First Name: Connie
 Last Name: Cobol
 Tax State: MA
 Clock Number: 98401
 Wage Rate: 10.60
 Hours: 51.00

 *** Calculated Values are *** 

 Overtime Hours : 11.00
 Gross Pay : $598.90
 State Tax : $29.95
 Federal Tax : $149.73
 Net Pay : $419.23


 Enter Employee First Name: 
 Enter Employee Last Name: 
 Enter Employee Tax State: 
 Enter Employee Clock Number: 
 Enter Employee Hourly Wage Rate: 
 Enter Employee Hours Worked for the Week: 

 *** Entered Details are *** 

 First Name: Mary
 Last Name: Apl
 Tax State: NH
 Clock Number: 526488
 Wage Rate: 9.75
 Hours: 42.50

 *** Calculated Values are *** 

 Overtime Hours : 2.50
 Gross Pay : $426.56
 State Tax : $0.00
 Federal Tax : $106.64
 Net Pay : $319.92


 Enter Employee First Name: 
 Enter Employee Last Name: 
 Enter Employee Tax State: 
 Enter Employee Clock Number: 
 Enter Employee Hourly Wage Rate: 
 Enter Employee Hours Worked for the Week: 

 *** Entered Details are *** 

 First Name: Frank
 Last Name: Fortran
 Tax State: VT
 Clock Number: 765349
 Wage Rate: 10.50
 Hours: 37.00

 *** Calculated Values are *** 

 Overtime Hours : 0.00
 Gross Pay : $388.50
 State Tax : $23.31
 Federal Tax : $97.12
 Net Pay : $268.07


 Enter Employee First Name: 
 Enter Employee Last Name: 
 Enter Employee Tax State: 
 Enter Employee Clock Number: 
 Enter Employee Hourly Wage Rate: 
 Enter Employee Hours Worked for the Week: 

 *** Entered Details are *** 

 First Name: Jeff
 Last Name: Ada
 Tax State: NY
 Clock Number: 34645
 Wage Rate: 12.25
 Hours: 45.00

 *** Calculated Values are *** 

 Overtime Hours : 5.00
 Gross Pay : $581.88
 State Tax : $46.55
 Federal Tax : $145.47
 Net Pay : $389.86


 Enter Employee First Name: 
 Enter Employee Last Name: 
 Enter Employee Tax State: 
 Enter Employee Clock Number: 
 Enter Employee Hourly Wage Rate: 
 Enter Employee Hours Worked for the Week: 

 *** Entered Details are *** 

 First Name: Anton
 Last Name: Pascal
 Tax State: CA
 Clock Number: 127615
 Wage Rate: 8.35
 Hours: 40.00

 *** Calculated Values are *** 

 Overtime Hours : 0.00
 Gross Pay : $334.00
 State Tax : $23.38
 Federal Tax : $83.50
 Net Pay : $227.12