-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConto.java
50 lines (38 loc) · 821 Bytes
/
Conto.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
44
45
46
47
48
49
50
public class Conto {
private String iban;
private String cf;
private double saldo;
Conto(String iban, String cf){
this.iban=iban;
this.cf=cf;
}
public String getIban() {
return iban;
}
public void setIban(String iban) {
this.iban = iban;
}
public String getCf() {
return cf;
}
public void setCf(String cf) {
this.cf = cf;
}
public double getSaldo() {
return saldo;
}
public void setSaldo(double saldo) {
this.saldo = saldo;
}
public boolean preleva(double somma){
if(saldo>=somma){
saldo-=somma;
return true;
}
return false;
}
public boolean deposita(double somma){
saldo+=somma;
return true;
}
}