Skip to content

Instantly share code, notes, and snippets.

View alkusr's full-sized avatar
🏠
Working from home

Alkausar alkusr

🏠
Working from home
View GitHub Profile
@uluumbch
uluumbch / Buku.java
Created September 29, 2021 09:22
program java sederhana dengan constructor, abstract, input
package praktikum4.soal2;
public abstract class Buku {
protected String judul;
protected String penulis;
protected int tahun;
protected void display() {
}
}