binibiningtinamoran

DigitalBook

Nov 16th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. public class DigitalBook extends Book {
  2.  
  3.     public DigitalBook(String title, String author, String ISBN, String format, int totalPage,
  4.             int totalChapter, double unitPrice) {
  5.         super(title, author, ISBN, totalPage, totalChapter, unitPrice);
  6.         this.format = "PDF";
  7.     }
  8.  
  9. }
Add Comment
Please, Sign In to add comment