SOLVE THE FOLLOWING PLEASE SalesTax.java import java.util.Scanner;…SOLVE THE FOLLOWING PLEASEImage transcription textTask #3 Debugging a Java Program 1. Copy the file Sales Tax.java (see Code Listing 1.2) from the Student Filesor as directed by your instructor. 2. Open the file in your IDE or text editor as directed by your instructor. Thisfile contains a simple Java program that contains errors. Compile the program. You should get a li… Show more… Show moreSalesTax.javaimport java.util.Scanner; // Needed for the Scanner class/** This program calculates the total price which includes sales tax.*/public class SalesTax{ public static void main(String[] args) {// Identifier declarationsfinal double TAX_RATE = 0.055;double price;double taxdouble total;String item;// Create a Scanner object to read from the keyboard.Scanner keyboard = new Scanner(System.in);// Display prompts and get input.System.out.print(“Item description: “);item = keyboard.nextLine();System.out.print(“Item price: $”);price = keyboard.nextDouble();// Perform the calculations.tax = price + TAX_RATE;total = price * tax;// Display the results.System.out.print(item + “$”);System.out.println(price);System.out.print(“Tax$”);System.out.println(tax);System.out.print(“Total$”);System.out.println(total); }}Computer ScienceEngineering & TechnologyJava ProgrammingCS 134

Order your essay today and save 20% with the discount code ESSAYHELP