MainApplication.java 255B

123456789101112131415
  1. /**
  2. * Created by leon on 1/10/18.
  3. */
  4. public class MainApplication {
  5. public static void main(String[] args)
  6. {
  7. Inventory i=new Inventory();
  8. double total=i.totalPrice();
  9. System.out.println(total);
  10. }
  11. }