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


 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


 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


 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


 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