This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package praktikum4.soal2; | |
public abstract class Buku { | |
protected String judul; | |
protected String penulis; | |
protected int tahun; | |
protected void display() { | |
} | |
} |