public interface iLibraryBook { public void PrintFine(); public String PrintISBN(); Create a subclass called ProcessLibraryBook that extends the LibraryBook class. The ProcessLibraryBook class must...


Please help with the question on the picture


public interface iLibraryBook<br>{<br>public void PrintFine();<br>public String PrintISBN();<br>Create a subclass called ProcessLibraryBook that extends the LibraryBook class. The<br>ProcessLibraryBook class must contain a constructor to accept the person name, book name, ISBN<br>and days late as parameters. Then, write code for the PrintFine() and PrintISBN() methods which<br>displays the person name, book name, ISBN, days late and the total fine due.<br>Finally, write a ProcessLibraryBookApplication class to capture the data and instantiate the<br>ProcessLibraryBook class.<br>Sample output is shown below, and you may use the same values to test your application.<br>Example of input and output:<br>Rater the person naze: Jce 2loggs<br>Enter the ISEN: 115ESE7E5<br>Enter the book name: How to bake cakes<br>Entez the amount of days late: 35<br>正重:<br>FERSON: Joe 2loggs<br>BOOK: How to bake cakes<br>ISEN: 115E5E7E5<br>DAYS LATE: 35<br>FINE PAYAEL2: R 42.0<br>AX A<br>

Extracted text: public interface iLibraryBook { public void PrintFine(); public String PrintISBN(); Create a subclass called ProcessLibraryBook that extends the LibraryBook class. The ProcessLibraryBook class must contain a constructor to accept the person name, book name, ISBN and days late as parameters. Then, write code for the PrintFine() and PrintISBN() methods which displays the person name, book name, ISBN, days late and the total fine due. Finally, write a ProcessLibraryBookApplication class to capture the data and instantiate the ProcessLibraryBook class. Sample output is shown below, and you may use the same values to test your application. Example of input and output: Rater the person naze: Jce 2loggs Enter the ISEN: 115ESE7E5 Enter the book name: How to bake cakes Entez the amount of days late: 35 正重: FERSON: Joe 2loggs BOOK: How to bake cakes ISEN: 115E5E7E5 DAYS LATE: 35 FINE PAYAEL2: R 42.0 AX A
Design a console application that will print the fine due for an individual who is late in returning a<br>library book. Use an abstract class named LibraryBook that contains variables to store the person<br>name, book name, days late and fine payable. Create a constructor that accepts the person name,<br>book name and days late as parameters, and create get methods for the variables except for the<br>ISBN. The LibraryBook class must also contain a method to calculate the fine. If the days late are<br>greater than or equal to 30, multiply the days late by R1.20, else no fine is payable.<br>The LibraryBook class must implement an iLibraryBook interface that contaiìns the following<br>

Extracted text: Design a console application that will print the fine due for an individual who is late in returning a library book. Use an abstract class named LibraryBook that contains variables to store the person name, book name, days late and fine payable. Create a constructor that accepts the person name, book name and days late as parameters, and create get methods for the variables except for the ISBN. The LibraryBook class must also contain a method to calculate the fine. If the days late are greater than or equal to 30, multiply the days late by R1.20, else no fine is payable. The LibraryBook class must implement an iLibraryBook interface that contaiìns the following
Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here