fork download
  1. //********************************************************
  2. //
  3. // Assignment 11 - Object Oriented Design
  4. //
  5. // Name: Ailin Gordon
  6. //
  7. // Class: C Programming, Spring, 2024
  8. //
  9. // Date: 16 APR 2024
  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. // TODO - Add public getter function prototype to retrieve stateTax
  181. float getStateTax() {
  182. return stateTax;
  183. }
  184. // TODO - Add public getter function prototype to retrieve fedTax
  185. float getFedTax() {
  186. return fedTax;
  187. }
  188. // TODO - Add public getter function prototype to retrieve netPay
  189. float getNetPay() {
  190. return netPay;
  191. }
  192. // member function prototype to print an Employee object
  193. void printEmployee(Employee e); // passes an object
  194.  
  195. }; // class Employee
  196.  
  197. // constructor with arguments
  198. Employee::Employee (string myFirstName, string myLastName, string myTaxState,
  199. int myClockNumber, float myWageRate, float myHours)
  200. {
  201. // initialize all member data items
  202. firstName = myFirstName; // input
  203. lastName = myLastName; // input
  204.  
  205. // Convert myTaxState to uppercase if entered in lowercase
  206. if (std::islower(myTaxState[0]))
  207. myTaxState[0] = std::toupper(myTaxState[0]);
  208. if (std::islower(myTaxState[1]))
  209. myTaxState[1] = std::toupper(myTaxState[1]);
  210.  
  211. taxState = myTaxState; // input
  212. clockNumber = myClockNumber; // input
  213. wageRate = myWageRate; // input
  214. hours = myHours; // input
  215. overTimeHrs = calcOverTimeHrs(); // calculated overtime hours
  216. grossPay = calcGrossPay(); // calculated gross pay
  217.  
  218. // TODO - set stateTax as the return from calcStateTax member function
  219. stateTax = calcStateTax();
  220. // TODO - set fedTax as the return from calcFedTax member function
  221. fedTax = calcFedTax();
  222. // TODO - set netPay as the return from calcNetPay member function
  223. netPay = calcNetPay();
  224. } // Employee constructor
  225.  
  226. // Employee's destructor
  227. Employee::~Employee()
  228. {
  229. // nothing to print here, but could ...
  230. }
  231.  
  232. // A "getter" function that will retrieve the First Name
  233. string Employee::getFirstName() {
  234. return firstName;
  235. }
  236.  
  237. // A "getter" function that will retrieve the employee Last Name
  238. string Employee::getLastName() {
  239. return lastName;
  240. }
  241.  
  242. // A "getter" function that will retrieve the employee Tax State
  243. string Employee::getTaxState() {
  244. return taxState;
  245. }
  246.  
  247. // A "getter" function that will retrieve the employee Clock Number
  248. int Employee::getClockNumber() {
  249. return clockNumber;
  250. }
  251.  
  252. // A "getter" function that will retrieve the employee Wage Rate
  253. float Employee::getWageRate() {
  254. return wageRate;
  255. }
  256.  
  257. // A "getter" function that will retrieve the employee Hours Worked
  258. float Employee::getHours() {
  259. return hours;
  260. }
  261.  
  262. // A "getter" function that will retrieve the employee Overtime Hours
  263. float Employee::getOverTimeHrs() {
  264. return overTimeHrs;
  265. }
  266.  
  267. // A "getter" function that will retrieve the employee Gross Pay
  268. float Employee::getGrossPay() {
  269. return grossPay;
  270. }
  271.  
  272. // TODO - Add a "getter" function that will retrieve the employee stateTax
  273.  
  274. // TODO - Add a "getter" function that will retrieve the employee fedTax
  275.  
  276. // TODO - Add a "getter" function that will retrieve the employee netPay
  277.  
  278.  
  279. // a member function to print out the info in a given Employee object
  280. void Employee::printEmployee(Employee e) {
  281.  
  282. // Display the entered input on the Employee
  283. cout<<"\n\n *** Entered Details are *** \n";
  284. cout<<"\n First Name: "<< e.getFirstName();
  285. cout<<"\n Last Name: "<< e.getLastName();
  286. cout<<"\n Tax State: "<< e.getTaxState();
  287. cout <<"\n Clock Number: "<< e.getClockNumber();
  288. cout <<"\n Wage Rate: "<< e.getWageRate ();
  289. cout <<"\n Hours: "<< e.getHours ();
  290.  
  291. // Display the calculated values of the Employee
  292. cout<<"\n\n *** Calculated Values are *** \n";
  293.  
  294. // print out overtime hours based on the employee information entered
  295. cout <<"\n Overtime Hours : " << e.getOverTimeHrs();
  296.  
  297. // print out gross pay based on the employee information entered
  298. cout <<"\n Gross Pay : $" << e.getGrossPay();
  299.  
  300. // TODO - Add cout statement with call to stateTax getter function
  301. cout << "\n State Tax : $" << fixed << setprecision(2) << e.getStateTax();
  302. // TODO - Add cout statement with call to fedTax getter function
  303. cout << "\n Federal Tax : $" << fixed << setprecision(2) << e.getFedTax();
  304. // TODO - Add cout statement with call to netPay getter function
  305. cout << "\n Net Pay : $" << fixed << setprecision(2) << e.getNetPay();
  306. // add a new line to separate the next employee
  307. cout <<"\n";
  308.  
  309. } // printEmployee
  310.  
  311. // main function to start the processing
  312. int main ()
  313. {
  314. // local variables to collect user input
  315.  
  316. string myFirstName; // First Name to input
  317. string myLastName; // Last Name to input
  318. string myTaxState; // Tax State to input
  319. int myClockNumber; // Clock Number to input
  320. float myWageRate; // Wage Rate to input
  321. float myHours; // Hours to input
  322.  
  323. cout << fixed // fix the number of decimal digits
  324. << setprecision(2); // to 2
  325.  
  326. // Array of Objects to store each of our employees
  327. Employee e[EMP_SIZE];
  328.  
  329. // prompt for information to read in employee information
  330. for (int i = 0; i < EMP_SIZE; ++i)
  331. {
  332. // Enter Employee Information
  333. cout <<"\n\n Enter Employee First Name: ";
  334. cin>>myFirstName ;
  335. cout <<"\n Enter Employee Last Name: ";
  336. cin>>myLastName ;
  337. cout <<"\n Enter Employee Tax State: ";
  338. cin>>myTaxState ;
  339. cout<<"\n Enter Employee Clock Number: ";
  340. cin>>myClockNumber;
  341. cout <<"\n Enter Employee Hourly Wage Rate: ";
  342. cin>>myWageRate;
  343. cout <<"\n Enter Employee Hours Worked for the Week: ";
  344. cin>>myHours;
  345.  
  346. // Call our constructor to create an employee object
  347. // using the input entered above. The constructor
  348. // will also put into motion the execution of the
  349. // various private member functions which will
  350. // calculate the overtime, gross pay, state tax, federal
  351. // tax, and net pay for the current employee.
  352.  
  353. // The updated object will be returned and placed in the
  354. // the element of our array of objects named "e", using the index
  355. // of the current value of our loop index "i" ... thus: e[i]
  356. e[i] = {myFirstName, myLastName, myTaxState,
  357. myClockNumber, myWageRate, myHours};
  358.  
  359. // Call the printEmployee public member function to display all
  360. // the inputted and calculated values for the current employee
  361. e[i].printEmployee(e[i]);
  362.  
  363. } // for
  364.  
  365. return 0;
  366.  
  367. } // main
Success #stdin #stdout 0.01s 5284KB
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