
/**
 * Checkout.java
 *
 *
 * Created: Tue Nov 19 18:51:16 2002
 *
 * @author <a href="mailto:bina@cse.buffalo.edu "</a>
 * @version
 */

public class Checkout {

   public static void main (String[] args) {
      double price1= 4.5, price2= 7.8, price3= 6.5;
      double total;
      double tax;


      total = price1 + price2 + price3;

      System.out.println("The total price before tax is: " + total);

      total = total + total*0.08;

      System.out.println("The total price after tax is: " + total);
      
   } // end of main ()
   
}// Checkout
