Blame view

tp4_banque/source/Guichet.java 1.57 KB
49443da5   Vincent Benoist   tp avance
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
  import java.util.Scanner;
  
  public class Guichet {
   static Scanner in = new Scanner(System.in);
   // creation de la banque :
   static Banque bank = new Banque();
  
   public static void main (String[] args) {
    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 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\n0: quitter");
   }
  
   static void menuNouveauCompte() {
    int num;
    num=bank.ouvrirCompte();
    System.out.println("numero= "+num);
   }
  
   static void menuCrediter() {
    int num;
    System.out.print("\nnumero du compte? ");
    num=in.nextInt();
    System.out.print("somme? ");
    bank.crediter(num, in.nextDouble());
   }
  
   static void menuDebiter() {
    int num;
    System.out.print("\nnumero du compte? ");
    num=in.nextInt();
    System.out.print("somme? ");
    bank.debiter(num, in.nextDouble());
   }
  
   static void menuVirement() {
    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());
   }
  }