Question: it's a java programm and it's the final so plz hurry and I'll rate up immediately i just jave one hour CSC1250 Find EX Solution

 it's a java programm and it's the final so plz hurry

it's a java programm and it's the final so plz hurry and I'll rate up immediately i just jave one hour

CSC1250 Find EX Solution Fall 2020 2021 Problem #4: (20 pts) 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 13 1230 15 17 A[0]-500 means the book with code 0 has 500 copies. A[1]=13 means the book with code I has 13 copies, and so on. a) Write a method boolean borrow (intl -4, int bookIndex) that takes an array of integers A and a book's code then decreases the number of copies of that book by i (if there are available copies). The method returns true if the book is successfully borrowed. If there are no available copies the value is zerol, 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 a book's code: 10 The book does not exist Sample run 3: Enter a book'a code: 3 You can't borrow the book, there are no available copies

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!