Salut, je crée un menu simple et j aimerais faire le choix parmi les options proposées par le menu, sans appuyer chaque fois la touche Entrée pour confirmer, comme dans mon petit code ci dessous:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
#include<cstdlib>
#include <iostream>
#include <string>
 
using namespace std;
 
 
int main() {
 
 
    char choice1, choice2;
 
    do {
 
        system("cmd /c cls");
 
        cout << endl << endl << "              ---------------   GESTION CLIENTS   -----------------" << endl << endl << endl;
        cout << endl << endl << "                           A  ----->  INFORMATION CLIENTS" << endl;
        cout << endl << endl << "                           B  ----->  AJOUT CLIENT" << endl;
 
        cout << endl << endl << "                 faites le choix d une option" << endl;
        cin >> choice1;
 
        switch (choice1){
 
        case 'a':
 
            do{
                system("cmd /c cls");
 
                cout << endl << endl << "                   ------------ INFORMATION CLIENTS -------------" << endl << endl;
 
                cout << endl << endl << endl << "                   Appuyer la touche R pour retouner au menu" << endl << endl;
                cin >> choice2;
 
            } while (choice2 != 'r');
 
            break;
 
 
        case 'b':
 
            do{
 
                system("cmd /c cls");
 
                cout << endl << endl << "                   ------------ AJOUT CLIENT -------------" << endl << endl;
 
 
                cout << endl << endl << endl << "                  Appuyer la touche R pour retouner au menu" << endl << endl;
                cin >> choice2;
 
            } while (choice2 != 'r');
 
            break;
 
        default:;
 
        }
 
    } while (choice1 != 'x');
 
    return 0;
}
Merci d avance.