Create a TaxReturn class with fields that hold a taxpayer's Social Security number, last name, first name, street address, city, state, zip code, annual income, marital status, and tax liability. Include a constructor that requires areguments that provide values for all fields other than the tax liability. The constructor calculates the tax liability based on annual income and the percentages presented in the table located on page 387.
In the TaxReturn class, also include a display method that displays all the TaxReturn data. Save the file as TaxReturn.java
Follow the instructions on page 388 to complete this homework assignment.