forked from arhiansyah/Project1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbank.java
43 lines (36 loc) · 1.01 KB
/
bank.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
40
41
42
43
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package bank;
/**
*
* @author Rivan Dwi Arhiansyah(18102068)
*/
public class Bank {
int saldo; //deklarasi variabel
//construktor dari bank dengan parameter variabel saldo
Bank(int saldo) {
this.saldo = saldo;
}
void simpanUang(int uang) { //method simpan uang
// nambahin uang ke saldo
this.saldo += uang;
// cetak informasi
System.out.println("Simpan uang: Rp." + uang);
System.out.println("Saldo saat ini: Rp." + this.saldo);
}
//method untuk menarik uang
void ambilUang(int uang) {
// ngurangin uang dari saldo
this.saldo -= uang;
// cetak informasi
System.out.println("Ambil uang: Rp." + uang);
System.out.println("Saldo saat ini: Rp." + this.saldo);
}
//method mencetak saldo awal
void getSaldo() {
System.out.println("Saldo saat ini: Rp." + this.saldo);
}
}