akosiraff

Download Pay Calculator Solution

Dec 9th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/pay-calculator-solution/
  3. Create a program that will calculate employee’s weekly pay as follows:
  4. Input:
  5. Name
  6. Hourly Rate of pay($ / hour)
  7. Marital Status (Married/ Single)
  8. # of Dependents
  9. Healthcare (Yes or No)
  10. Hours Worked
  11. Outputs
  12. Gross Pay (Hours over 40 are paid at time and half)
  13. Health Insurance Amount
  14. Federal Tax
  15. From gross taxable pay subtract $70 for each dependent
  16. From value in A subtract appropriate value in Standard deduction column from table below to give taxable gross
  17. Tax at rate of 10% appropriate amount in 10% Column from table below
  18. Tax at rate of 15% appropriate amount in 15% Column from table below
  19. Tax at rate of 25% appropriate amount in 25% Column from table below
  20. Tax at rate of 35% remaining amount in 35% Column from table below
  21. Net Pay (Gross pay – Health care deduction – Federal Tax)
  22. If any of the input are unreasonable, tell user with a message and force reentry of the data
  23. Additional Requirements
  24. Name any control that is reference in code with a meaningful name
  25. Use functions for major task
  26. Calculate Gross Pay
  27. Calculate Health Deductions
  28. Calculate tax
  29. Other than constants do not use global variables
  30. Comment each function and variable and major sections of code
  31.  
  32. Download: http://solutionzip.com/downloads/pay-calculator-solution/
Add Comment
Please, Sign In to add comment