You are viewing a single comment's thread. Return to all comments →
----------------MY full code ----- import java.io.; import java.util.;
abstract class Book { String title; String author;
Book(String title, String author) { this.title = title; this.author = author; } abstract void display();
}
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); }
public class Solution {
public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String title = scanner.nextLine(); String author = scanner.nextLine(); int price = scanner.nextInt(); scanner.close(); Book new_novel = new MyBook(title, author, price); new_novel.display(); }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 13: Abstract Classes
You are viewing a single comment's thread. Return to all comments →
----------------MY full code ----- import java.io.; import java.util.;
abstract class Book { String title; String author;
}
class MyBook extends Book { int price;
}
public class Solution {
}