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