-
Notifications
You must be signed in to change notification settings - Fork 1
/
Compte.java
113 lines (96 loc) · 2.52 KB
/
Compte.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
public class Compte {
private String nom;
private String releveCompte;
private int noCompte;
private int solde;
private int montantDecouvertMax;
private int nbComptes;
private int montantDebitMax;
public Compte(String nom, int noCompte) {
nbComptes++;
this.nom = nom;
this.releveCompte = "Releve de compte de " + nom;
this.noCompte = noCompte;
this.solde = 0;
this.montantDecouvertMax = 800;
this.montantDebitMax = 1000;
}
public Compte(String nom) {
nbComptes++;
this.nom = nom;
this.releveCompte = "Releve de compte de " + nom;
this.noCompte = nbComptes;
this.solde = 0;
this.montantDecouvertMax = 800;
this.montantDebitMax = 1000;
}
public Compte(String nom, int noCompte, int solde, int decouvertMax,
int debitMax) {
this.nom = nom;
this.releveCompte = "Releve de compte de " + nom;
this.noCompte = noCompte;
this.solde = solde;
this.montantDecouvertMax = decouvertMax;
this.montantDebitMax = debitMax;
}
private void histOpp(String addOp){
releveCompte += "\n OPERATION : "+addOp;
}
public String getReleveCompte() {
return this.releveCompte;
}
public String toString() {
return "Numero du compte : " + noCompte + "\n Nom du titulaire : "
+ nom + "\n Decouvert maximal autorise : "
+ montantDecouvertMax + "\n Debit maximal autorise : "
+ montantDebitMax + "\n Solde du compte : " + solde + "\n \n";
}
public void crediter(int somme) {
if (somme > 0) {
this.solde += somme;
this.histOpp(somme+ " euros credités");
}
}
public boolean debiter(int somme) {
int tempSolde = solde - somme;
if (somme < 0 || tempSolde < -montantDecouvertMax
|| somme > montantDebitMax) {
return false;
} else {
solde = tempSolde;
this.histOpp(somme+ " euros debités");
return true;
}
}
public boolean debiterVirement(int somme) {
int tempSolde = solde - somme;
if (somme < 0 || tempSolde < -montantDecouvertMax
|| somme > montantDebitMax) {
return false;
} else {
solde = tempSolde;
this.histOpp(somme+ " euros debités et virés du compte ");
return true;
}
}
public void crediterVirement(int somme) {
if (somme > 0) {
this.solde += somme;
this.histOpp(somme+ " euros credités et virés du compte ");
}
}
public boolean virementVers(int somme, Compte c) {
if (this.debiterVirement(somme)) {
c.crediterVirement(somme);
return true;
} else {
return false;
}
}
public void setDecouvertMax(int somme) {
montantDecouvertMax = somme;
}
public void setDebitMax(int somme) {
montantDebitMax = somme;
}
}