Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class DigitalBook extends Book {
- public DigitalBook(String title, String author, String ISBN, String format, int totalPage,
- int totalChapter, double unitPrice) {
- super(title, author, ISBN, totalPage, totalChapter, unitPrice);
- this.format = "PDF";
- }
- }
Add Comment
Please, Sign In to add comment