Guichet.java
2.98 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import java.util.Scanner;
public class Guichet {
static Scanner in = new Scanner(System.in);
// creation de la banque :
static Banque bank = new Banque();
static int nombreEssai ;
public static void main (String[] args) {
nombreEssai=0;
int choix=0;
do {
menu();
System.out.print("votre choix? ");
choix = in.nextInt();
switch (choix) {
case 1 : // etat des comptes
bank.etat();
break;
case 2 : // creer un nouveau compte
menuNouveauCompte();
break;
case 3: // crediter un compte
menuCrediter();
break;
case 4: // debiter un compte
menuDebiter();
break;
case 5: // effectuer un virement
menuVirement();
break;
case 6: // effectuer un virement
menuNouveauCompteEpargne();
break;
case 7:
menuInterets();
break;
case 8: // effectuer un virement
menuEcheance();
break;
case 0: // quitter
}
} while (choix!=0);
System.out.println("au revoir");
}
static void menu() {
System.out.println("\n1: etat des comptes\n2: creer un nouveau compte\n3: crediter un compte\n4: debiter un compte\n5: effectuer un virement\n6: creer un nouveau compte epargne\n7: interets\n8: echeance\n0: quitter");
}
static void menuNouveauCompte() {
int num;
num=bank.ouvrirCompte();
System.out.println("numero= "+num);
}
static void menuNouveauCompteEpargne() {
double num;
System.out.print("\ncredit? ");
num=in.nextDouble();
System.out.print("interet? ");
num=bank.ouvrirCompteEpargne(num, in.nextDouble());
System.out.println("numero= "+num);
}
static void menuCrediter(){
try{
int num;
System.out.print("\nnumero du compte? ");
num=in.nextInt();
System.out.print("somme? ");
bank.crediter(num, in.nextDouble());
}catch (CompteInexistantException e){
nombreEssai++;
System.out.println("Nombre essais invalides: "+ nombreEssai);
}
}
static void menuDebiter() {
try{
int num;
System.out.print("\nnumero du compte? ");
num=in.nextInt();
System.out.print("somme? ");
bank.debiter(num, in.nextDouble());
}catch (CompteInexistantException e){
nombreEssai++;
System.out.println("Nombre essais invalides: "+ nombreEssai);
}
}
static void menuVirement() {
try{
int from, to;
System.out.print("\ncompte a debiter? ");
from=in.nextInt();
System.out.print("compte a crediter? ");
to=in.nextInt();
System.out.print("somme? ");
bank.virement(from, to, in.nextDouble());
}catch (CompteInexistantException e){
nombreEssai++;
System.out.println("Nombre essais invalides: "+ nombreEssai);
}
}
static void menuEcheance() {
try{
int num;
System.out.print("\nnumero du compte? ");
num=in.nextInt();
bank.echeance(num);
}catch (CompteInexistantException e){
nombreEssai++;
System.out.println("Nombre essais invalides: "+ nombreEssai);
}
}
static void menuInterets() {
try{
int num;
System.out.print("\nnumero du compte? ");
num=in.nextInt();
bank.interets(num);
}catch (CompteInexistantException e){
nombreEssai++;
System.out.println("Nombre essais invalides: "+ nombreEssai);
}
}
}