Answered step by step
Verified Expert Solution
Question
1 Approved Answer
This is Java. In this lab, you will implement a shopping cart using the ArrayList class. Create a class named Item that models an item
This is Java. 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, todays 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
- Change item quantity
- Display items names and descriptions
- Display carts contents
- Create a class 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.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started