Product Calculation
// INCLUDING TAX WITH PRODUCT CALCULATION// import java.util.Scanner; public class TaxCalculator { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); // Define the tax rate (for example, 7% tax rate) final double TAX_RATE = 0.07; // Get the product name from the user System.out.print("Enter the product name: "); String productName = scanner.nextLine(); // Get the product amount from the user System.out.print("Enter the product amount: "); double amount = scanner.nextDouble(); // Calculate the tax double tax = amount * TAX_RATE; // Calculate the total amount including tax double totalAmount = amount + tax; // Display the result System.out.printf("Product: %s%n", productName); System.out.printf("Amount: $%.2f%n", amount); System.out.printf("Tax (7%%): $%.2f%n", tax); System.out.print...