SHOW:
|
|
- or go back to the newest paste.
1 | public class Kalkulator{ | |
2 | public int bil_1 = 10; // ini state (Variable di dalam class) | |
3 | public int bil_2 = 15; // ini state (Variable di dalam class) | |
4 | ||
5 | public int tambah(){ // ini method (function di dalam class) | |
6 | return this.bil_1 + this.bil_2; | |
7 | } | |
8 | public int kurang(){ // ini method (function di dalam class) | |
9 | return this.bil_1 - this.bil_2; | |
10 | } | |
11 | public int kali(){ // ini method (function di dalam class) | |
12 | return this.bil_1 * this.bil_2; | |
13 | } | |
14 | public int bagi(){ // ini method (function di dalam class) | |
15 | return this.bil_1 / this.bil_2; | |
16 | } | |
17 | } |