25/02/2024
import javax.swing.JOptionPane;
public class DebugTwo4
{
public static void main(String[] args)
{
String costString;
double cost;
final double TAX = 0.06;
costString = JOptionPane.showInputDialog(null,"Enter price of item you are buying", "Purchases",JOptionPane.INFORMATION_MESSAGE);
cost = Double.parseDouble(costString);
String message ="With " + (TAX * 100) + "% tax, purchase is $" + cost + (cost * TAX);
JOptionPane.showMessageDialog(null, message);
}
}
//Java 2 examino Chatzis