Advertisement
Guest User

buy method

a guest
Apr 1st, 2020
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.13 KB | None | 0 0
  1. public double buy() {
  2.     double total = 0;
  3.     for (Product product: products) {
  4.         total += product.price;
  5.     }
  6.     return total;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement