akosiraff

Download IncomeTax C++ Answer

Jun 11th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1.  
  2. Download: https://solutionzip.com/downloads/incometax/
  3. Write a c++ program that will calculate the income taxes owed based on the following table.
  4. Income Range Income Tax Amount
  5. $0 – $2,000 Nothing
  6. $2,001 – $20,000 4% * Each dollar earned over $2,000
  7. $20,001 – $40,000 $720 + 8% * Each dollar earned over $20,000
  8. $40,001 – $80,000 $2,320 + 16% * Each dollar earned over $20,000
  9. $80,001 – $120,000 $8,720 + 24% * Each dollar earned over $20,000
  10. $120,001 + $18,320 + 32% * Each dollar earned over $20,000Your program is to prompt the user for their income amount and then read in this value from the input. Next your program should calculate and output the amount of income tax. Be sure to output your information is some readable style.
  11. Download: https://solutionzip.com/downloads/incometax/
Add Comment
Please, Sign In to add comment