Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Design and implement Java program as follows (1) There will be a Book Java class with following attributes: id, title, and price. (2) There will

Design and implement Java program as follows

(1) There will be a Book Java class with following attributes: id, title, and price.

(2) There will be an Inventory Java class which stores and manages a list of Book objects

(3) Inventory class will provide the following functionality:

a. Add: Prompts user for book data and add to the inventory list. If the book already exists (based on id value), the add request will fail and an error message will be printed to the console

b. Remove. Prompts user for book id, finds the id in the inventory list and removes it. If the book matching the id is not in the inventory, remove request will fail and an error message will be printed to the console

c. Find: Prompts user for book id, finds the id in the inventory list and print all the data for the book (id, title, and price). If the book matching the id is not in the inventory, find request will fail and an error message will be printed to the console

d. Display: Print all the book information for each book to the console

(4) Implement RunInventory class with main method that will provide the menu with selection for each above functionality.

Style and Documentation: Make sure your Java program is using the recommended style such as: Javadoc comment up front with your name as author, date, and brief purpose of the program Comments for variables and blocks of code to describe major functionality Meaningful variable names and prompts Class names are written in upper CamelCase Constants are written in All Capitals Use proper spacing and empty lines to make code human readable Capture execution: You should capture and label screen captures associated with compiling your code, and running the a passing and failing scenario for each functionality

Sample run 1: MENU 1: Add book 2: Remove book 3: Find book 4: Display all books 9: Exit program Enter your selection : 4 The inventory has no books MENU 1: Add book 2: Remove book 3: Find book 4: Display all books 9: Exit program Enter your selection : 9 Thank you for using the program. Goodbye!

Sample run 2: MENU 1: Add book 2: Remove book 3: Find book 4: Display all books 9: Exit program Enter your selection : 1 What is the book id (integer value)? 12345 What is the book price (double value)? 19.98 What is the book title? The end of the civilization MENU 1: Add book 2: Remove book 3: Find book 4: Display all books 9: Exit program Enter your selection : 4 Book id= 12345 Book title=The end of the civilization Book price=19.98 MENU 1: Add book 2: Remove book 3: Find book 4: Display all books 9: Exit program Enter your selection : 9 Thank you for using the program. Goodbye!

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

Data Management Databases And Organizations

Authors: Richard T. Watson

3rd Edition

0471418455, 978-0471418450

More Books

Students also viewed these Databases questions

Question

Explain exothermic and endothermic reactions with examples

Answered: 1 week ago

Question

Write a short note on rancidity and corrosiveness.

Answered: 1 week ago