MainApplication.java 432B

1234567891011121314151617
  1. /**
  2. * Created by leon on 1/10/18.
  3. */
  4. public class MainApplication {
  5. public static void main(String[] args){
  6. Inventory inventory = new Inventory();
  7. Product tea = new Product ("asdf", 44.43, 3);
  8. Product coffee = new Product("kedk", 234.88, 5);
  9. inventory.add(tea);
  10. inventory.add(coffee);
  11. int quantity = inventory.getTotalQuantity();
  12. System.out.println("Total quantity is " + quantity);
  13. }
  14. }