Question: java A Read aloud Highlight Page View V Draw A library includes a list of books and has many copies of every book. Assume having

java java A Read aloud Highlight Page View V Draw A library includes

A Read aloud Highlight Page View V Draw A library includes a list of books and has many copies of every book. Assume having an array named bookstore. Each element in the array represents a book and contains the number of copies of that book (each book code is recognized by the array index). For example, if the array is A 500 131230 15 17 A[0]-500 means the book with code 0 has 500 copies. A[1]-13 means the book with code 1 has 13 copies, and so on. a) Write a method boolean borrow (int[A, int bookIndex) that takes an array of integers A and a book's code then decreases the number of copies of that book by 1 (if there are available copies). The method returns true if the book is successfully borrowed. If there are no available copies (i.e value is zero), the method returns false. b) Write a program in which you create an array A of size 6 and fill it with numbers of your choice (you can use the shorthand array initialization). Assume all inputs are positive (do NOT check them in your program). Your program that asks the user to enter the book code (a positive integer), then invokes the above method. Check sample run below. For example, if the array is a declared above) Sample run 1: Enter a book's code: 1 Borrow succeeded. The remaining number of copies is 12 Sample run 2 : Enter books code: 10 ook does not exist Sample run 3 Enteboks ca

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!