MainApplication.java 457B

123456789101112131415161718
  1. /**
  2. * Created by leon on 1/10/18.
  3. */
  4. public class MainApplication {
  5. public static void Main(String[] arg){
  6. Inventory inv = new Inventory();
  7. System.out.println("total price of my shop is " + inv.sumOfInventory());
  8. System.out.println("the pricelist is " + inv.priceList());
  9. System.out.println("the id of each item is " + inv.id());
  10. System.out.println("the quantity of everything is " + inv.quantity());
  11. }
  12. }