Guest User

Untitled

a guest
Jan 24th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. import java.util.ArrayList;
  2. import java.util.List;
  3.  
  4. public class Cart {
  5.  
  6.      List<Product> cart;
  7.  
  8. public void addProduct (Product p) {
  9. cart.add(p);
  10. }
  11.  
  12. public double sum (double c) {
  13.     double totalPrice;
  14. for (int i = 0;  i < Cart.Size(); i++){
  15.     Product temp = cart.get(i);
  16.     totalPrice =+ totalPrice;
  17.     }
  18.  
  19.     return totalPrice;
  20. }
  21.  
  22. }
Add Comment
Please, Sign In to add comment