You are viewing a single comment's thread. Return to all comments →
From my HackerRank solutions.
class MyBook extends Book { int price; MyBook(String title, String author, int price) { super(title, author); this.price = price; } void display() { System.out.println("Title: " + title); System.out.println("Author: " + author); System.out.println("Price: " + price); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Abstract Classes
You are viewing a single comment's thread. Return to all comments →
Java solution - passes 100% of test cases
From my HackerRank solutions.