-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Solution.java
39 lines (33 loc) · 879 Bytes
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// github.com/RodneyShag
import java.util.*;
abstract class Book {
String title;
String author;
Book(String t, String a) {
title = t;
author = a;
}
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 sc = new Scanner(System.in);
String title = sc.nextLine();
String author = sc.nextLine();
int price = sc.nextInt();
Book new_novel = new MyBook(title, author, price);
new_novel.display();
}
}