akosiraff

Download ComputeTaxProgram

Feb 2nd, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/computetaxprogram/
  3. Write a method for computing tax using the following header:
  4. Public static double computeTax(int status, double taxableIncome)
  5. Use this method to write a program that prints a tax table for taxable income from
  6. $50,000 to $60,000 with intervals of $50. For all of the following statuses:
  7. Taxable Single Married Joint Married Head of
  8. Income or Qualifying Separated a House
  9. Widow(er)
  10. 50000 8688 6665 8688 7353
  11. 50050 8700 6673 8700 7365
  12. …..
  13. 59950 11175 8158 11175 9840
  14. 60000 11180 8165 11180 9853
  15. Hint: Round the tax into integers using Math.round (i.e., Math.round(computeTax(status, taxableIncome))
  16. Download: http://solutionzip.com/downloads/computetaxprogram/
Add Comment
Please, Sign In to add comment