Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Moving Objects Databases

Authors: Ralf Hartmut Güting, Markus Schneider

1st Edition

0120887991, 978-0120887996

More Books

Students also viewed these Databases questions

Question

What is an assurance service engagement?

Answered: 1 week ago