Question: Please help java In this lab, you will implement a shopping cart using the Java ArrayList class. Your program will need the following classes: A

Please help java
In this lab, you will implement a shopping cart using the Java ArrayList class. Your program will need the following classes:
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.
o This class will calculate and print the item cost. 3 coffee @ $7.99= $23.79
A class named ShoppingCart that models a shopping cart. It has the customer name, todays date, and an ArrayList of items. In order to start an instance, you should provide the customer name and the date (Import the java.util.Date Package). This class has the following actions:
o Add an item to the cart.
o Remove an item from cart.
o Change an items quantity.
o Display the items names and descriptions.
o Display the carts contents.
3 coffee @ $7.99= $23.972 tea @ $5.99= $11.98
------------------------------------
Total = $35.95
A class named ShoppingCartManager that shows a menu to the user to choose an action to do: add item, remove an item, modify item quantity, display items names and descriptions, or display carts cart contents.
Import the java.util.Date Package Import the java.util.Calendar Package

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!