Question: Create a TaxReturn class with fields that hold a taxpayers Social Security number, last name, first name, street address, city, state, zip code, annual income,

In the TaxReturn class, also include a display method that displays all the TaxReturn data. Save the file as TaxReturn.java. Create an application that prompts a user for the data needed to create a TaxReturn. Continue to prompt the user for data as long as any of the following are true:
- The Social Security number is not in the correct format, with digits and dashes in the appropriate positionsfor example, 999-99-9999.
- The zip code is not five digits.
- The marital status does not begin with one of the following: S, s, M, or m.
- The annual income is negative. After all the input data is correct, create a TaxReturn object and then display its values. Save the file as PrepareTax.java.
Marital Status Income ($) Married 14% Single 0-20,000 20,001-50,000 15% 22% 20% 50,001 and over 28% 30%
Step by Step Solution
3.34 Rating (169 Votes )
There are 3 Steps involved in it
import javaxswing public class TaxReturn private String ssn private String last private ... View full answer
Get step-by-step solutions from verified subject matter experts
