Question: LAB 06 . In this lab you will implement a shopping cart using the ArrayList class. Create a class named Item that models an item
LAB 06 . In this lab you will implement a shopping cart using the ArrayList class. Create a class named Item that models an item one would purchase. It has a name, description, price, and quantity (the quantity purchased). Whenever you create a new item, you should provide those properties. This class to calculate and print the item cost. 3 coffee @ $7.99 = $23.79 Create a class ShoppingCart that models a shopping cart. It has the customer name, today's date, and an arraylist of items. In order to start an instance you should provide the customer name and the date. This class has the following actions: Add item to cart Remove item from cart 3 coffee @ $7.99 = $23.97 Change item quantity 2 tea @ $5.99 = $11.98 Display items' names and descriptions Display cart's contents Total = $35.95 Create a class ShoppingCartManager that shows a menu to the user to choose an action to do: add item, remove item, modify item quantity, display items' names and descriptions, or display cart's cart contents
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
