-
Notifications
You must be signed in to change notification settings - Fork 0
/
MenuPractica.cpp
56 lines (47 loc) · 1.05 KB
/
MenuPractica.cpp
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
#include <iostream>
#include <stdio.h>
#include <windows.h>
#include <stdlib.h>
#include <string.h>
#include <fstream>
#include "Practica1.h"
void MenuPrimero(int);
void agregarCliente();
void Datosdelcliente();
void DatosdelHotel();
using namespace std;
void MenuPractica()
{
system("cls");
int Opc;
cout<<" Practica del Hotel \n\n";
cout<<" ===== MENU ===== \n";
cout<<"| 1. Agregar Cliente |\n";
cout<<"| 2. Datos del Clientes |\n";
cout<<"| 3. Datos del Hotel |\n";
cout<<"| 4. salir |\n";
cout<<" ----------------\n\n";
cout<<"Opcion: ";
cin>>Opc;
fflush(stdin);
fflush(stdout);
switch(Opc)
{
case 1:
agregarCliente();
break;
case 2:
system("cls");
cout<<"************ LIstas de usuarios ****************"<<endl<<endl;
Datosdelcliente();
break;
case 3:
system("cls");
DatosdelHotel();
break;
case 4:
system("cls");
MenuPractica();
break;
}
}