CS 160, Summer 2016
Programming Assignment P3
Tax Computation

Programming due Monday, June. 24 at 6:00pm; late deadline at 11:59pm.


A Program for Computing Taxes

This programming assignment has five objectives:
  1. to teach you to read input from the keyboard,
  2. to use Java expressions involving integers and real numbers,
  3. to use conditional (if/else) statements in Java,
  4. to print formatted output,
  5. to see if you can figure out an algorithm!

A helpful visual aid for the math portion

Description

The program allows the user to input some of the information that normally appears on a tax form, then it calculates a tax bill according to the formulas described below. WARNING: Be aware that the tax computation shown here is greatly simplified and should not be used for calculation of your real taxes!

Instructions

For this assignment, you must follow directions exactly. Create a P3 project in Eclipse then write a class P3 with a main method, and put all of the following code into the main method:
  1. Instantiate a single Scanner object to read console input.
  2. Print the prompt shown below and ask the user for their gross salary.
  3. The gross salary represents dollars, which can be entered with or without decimal points.
  4. Print the prompt shown below and ask the user for the number of exemptions.
  5. The number of exemptions is an integer.
  6. Print the prompt shown below and ask the user for their interest income.
  7. The interest income represents dollars, which can be entered with or without decimal points.
  8. Print the prompt shown below and ask the user for their capital gains income.
  9. The capital gains represents dollars, which can be entered with or without decimal points.
  10. Perform the calculation of federal total income, as shown in the Formula section.
  11. Perform the calculation of the federal adjusted income, as shown in the Formula section.
  12. Perform the calculation of the federal total tax, as shown in the Formula section.
  13. Perform the calculation of the state income tax, as shown in the Formula section.
  14. Print out the total income, adjusted income, total tax, and state tax.
  15. The example below shows four lines of user input (in blue font), with prompts, followed by four lines of program output.
Salary: 92768.54
Exemptions: 8
Interest: 1234.50
Gains: 4400.99
Total Income: $93404.03
Adjusted Income: $84404.03
Total Tax: $15033.13
State Tax: $5486.26

Formulas

Total Tax computation: For the example above, we compute the Total Tax in the example above as follows:

13% * (35,000.00-20,000.00) = 1,950.00
23% * (50,000.00-35,000.00) = 3,450.00
28% * (84,404.03-50,000.00) = 9,633.13

Adding up the above we get a Total Tax of $15,033.13. That's a chunk of change! You can see the results of our other computations in output shown above.

State Tax = Adjusted Income * 6.5%

Specifications

Your program must meet the following specifications:

Grading Criteria

Submit your program to the Checkin tab on the course website, as you were shown in the recitation, and read the syllabus for the late policy (if necessary).

© 2016 CS160 Colorado State University. All Rights Reserved.