-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEncapsulation.java
More file actions
86 lines (66 loc) · 1.82 KB
/
Encapsulation.java
File metadata and controls
86 lines (66 loc) · 1.82 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Pengaplikasian Encapsulation pada program kasir sederhana
import java.util.Scanner;
public class Tugas4 {
private String judul;
private String pengarang;
private double harga;
private int jumlah;
private double total;
public String getJudul() {
return judul;
}
public void setJudul(String judul) {
this.judul = judul;
}
public String getPengarang() {
return pengarang;
}
public void setPengarang(String pengarang) {
this.pengarang = pengarang;
}
public double getHarga() {
return harga;
}
public void setHarga(double harga) {
this.harga = harga;
}
public int getJumlah() {
return jumlah;
}
public void setJumlah(int jumlah) {
this.jumlah = jumlah;
}
public double getTotal() {
total=harga*jumlah;
return total;
}
public void setTotal(double total) {
this.total = total;
}
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
Tugas4 data=new Tugas4();
System.out.println("==========INPUT PEMBELIAN BUKU==========");
System.out.print("Judul: ");
String judul=input.nextLine();
data.setJudul(judul);
System.out.print("Pengarang: ");
String pengarang=input.nextLine();
data.setPengarang(pengarang);
System.out.print("Harga Buku (Rp): ");
double harga= input.nextDouble();
data.setHarga(harga);
System.out.print("Jumlah Pembelian: ");
int jumlah=input.nextInt();
data.setJumlah(jumlah);
System.out.println();
System.out.println("==========DATA PEMBELIAN==========");
System.out.println("Judul: "+data.getJudul());
System.out.println("Pengarang: "+data.getPengarang());
System.out.println("Harga Buku (Rp): "+data.getHarga());
System.out.println("Jumlah Pembelian: "+data.getJumlah());
System.out.println();
System.out.println("==========TOTAL PEMBAYARAN==========");
System.out.println("Total (Rp): "+data.getTotal());
}
}