Question: Write a java program that executes the following: 1. Sales Tax: Write a class SalesTax that will calculate the sales tax on a purchase. (This

 Write a java program that executes the following: 1. Sales Tax:

Write a java program that executes the following:

1. Sales Tax: Write a class SalesTax that will calculate the sales tax on a purchase. (This should be similar to the BankAccount class in the textbook). There should be a constructor that accepts as input the state sales tax rate and the local sales tax rate. These will be two different inputs (2 parameters). Write a method that calculates the sales tax. This method should accept as input the price of the purchase (this will be used later so it needs to be assigned to a variable belonging to the class- an instance variable) and calculate the total sales tax charged on the purchase. There should be another method that calculates the total cost by adding the initial purchase (variable you received in previous method) and the sales tax. a. b. c. d. There should be a method to return sales tax e. There should be a method to return the total cost. Write a tester class that asks the user to input the purchase price. The tester class should usea state sales tax rate of 6 percent and a local sales tax rate of 4 percent. (These are input to the SalesTax class) Create an object using the sales taxes given. Execute the method to calculate the total sales tax for an item with price of $100. Execute a method to calculate the total product cost. Print the original price, the total sales tax, and the total cost of the product. Also print the expected total sales tax and the expected total cost of the product. Execute the method to calculate the total sales tax for an item with price of $50. Execute a method to calculate the total product cost. Print the original price, the total sales tax, and the total cost of the product Also print the expected total sales tax and the expected total cost of the product

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!