What's wrong with my code?

Hi, i'm programming a system that works as a veterinarian office, it needs to keep track of the people who leaves their mascots there and it needs to be able to check the information of them, this keeps me giving me errors but i don't know why, any help will be so usefull. Thanks in advance.

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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
  #include <iostream>
#include <stdio.h>
#include <string>
#include <stdio.h>

using namespace std;

class Veterinario
{
    public:
        string NombreVeterinario[5];
        string DomicilioVeterinario[5];
        int CodigoVeterinario[5];
        int TelefonoVeterinario[5];
        string Mascota[5];
public:
        void MenuVeterinario();
        void VerMascotaRegistrada();

};

void Veterinario::MenuVeterinario()
{
cout<<"Seleccione que quiere hacer:"<<endl;
cout<<"1.-Ver Mascotas registradas"<<endl;
cout<<"2.-Salir"<<endl;
}

void Veterinario::VerMascotaRegistrada()
{
    cout<<Mascota;
};

class Empleado
{
public:
        string NombreEmpleado[5];
        int CodigoEmpleado[5];
        int EdadEmpleado[5];
        string DomicilioEmpleado[5];
        string NombreCliente[5];
        string DomicilioCliente[5];
        int TelefonoCliente[5];
        int EdadCliente[5];
        string Mascota[5];
        string NombreVeterinario[5];
        string DomicilioVeterinario[5];
        int CodigoVeterinario[5];
        int TelefonoVeterinario[5];
public:
    void CapturarDatosCliente();
    void CapturarDatosVeterinario();
    void MenuEmpleado();
    void MostrarDatosCliente();
    void MostrarDatosVeterinario();


};

void Empleado::MenuEmpleado()

{
int x;
Empleado e;
cout<<"Seleccione su opción"<<endl<<endl;
cout<<"1.-Capturar Datos del Cliente"<<endl;
cout<<"2.-Capturar Datos de veterinario";

while (x=1)
{
CapturarDatosCliente();
}

while (x=2)
{
    CapturarDatosVeterinario();
}
}

void Empleado::CapturarDatosVeterinario()
{
    for (int i=0;i<5;++i)
        cout<<"Capturar Datos Veterinario"<<endl;
        cout<<"Ingrese nombre del veterinario";
        cin>>NombreVeterinario[i];
        cout<<"Ingrese domicilio del veterinario"<<endl;
        cin>>DomicilioVeterinario[i];
        cout<<"Ingrese el código del veterinario"<<endl;
        cin>>CodigoVeterinario[i];
        cout<<"Ingrese el teléfono del veterinario"<<endl;
        cin>>TelefonoVeterinario[i];


}

void Empleado::CapturarDatosCliente()
{
    for (int i=0;i<5;++i)
    cout<<"Capturar datos del cliente"<<endl<<endl;
    cout<<"Ingrese Nombre del cliente"<<endl;
    cin>>NombreCliente[i];
    cout<<"Ingrese domicilio del cliente"<<endl;
    cin>>DomicilioCliente[i];
    cout<<"Ingrese Telefono del cliente"<<endl;
    cin>>TelefonoCliente[i];
    cout<<"Ingrese nombre de la mascota"<<endl;
    cin>>Mascota[i];
}

void Empleado::MostrarDatosCliente()
{
    for (int i=0;i<5;++i)
    cout<<"Introduzca nombre de Cliente"<<endl;
    cin>>[i]{;
    do
    {
    cout<<NombreCliente[i]<<endl;
    cout<<DomicilioCliente[i]<<endl;
    cout<<TelefonoCliente[i]<<endl;
    cout<<EdadCliente[i]<<endl;
    cout<<Mascota[i]<<endl;
    }
    while (i==i);


}

class Cliente
{
public:
    string NombreCliente[5];
    string DomicilioCliente[5];
    int TelefonoCliente[5];
    int EdadCliente[5];
    string Mascota[5];
    int x;

    void MenuCliente();
    void VerSituacionCliente();
    void VerMascotaCliente();
};

void Cliente::MenuCliente()
{
int x;
Cliente b;
    cout<<"Seleccione una opción"<<endl<<endl;
    cout<<"1.-Ver datos registrados"<<endl;
    cout<<"2.-Ver datos de la mascota"<<endl;
    cin>>x;

    do {
    b.VerSituacionCliente();
    }
    while (x==1);

    do {
    b.VerMascotaCliente();
    }
    while (x==2);
}

void Cliente::VerMascotaCliente()
{
    string i;
    cout<<"Ingrese nombre de la mascota"<<endl;
    cin>>i;
    do
    {
        cout<<Mascota<<endl;
    }

    while (i==Mascota);
};


int main()

{
int opcion;
Veterinario a;
Empleado b;
Cliente c;
cout<<"###Bienvenido a la veterinaria###"<<endl<<endl;
cout<<"¿Cómo deseas ingresar?"<<endl;
cout<<"1.-Veterinario"<<endl;
cout<<"2.-Empleado"<<endl;
cout<<"3.-Cliente"<<endl;
cin>>opcion;

switch (opcion)

{
case 1:

{
a.MenuVeterinario();
}

case 2:
{
b.MenuEmpleado();
}

case 3:
{
c.MenuCliente();
}
break;
}

return 0;

}
All for (int i=0;i<5;++i) loops are missing curly braces.

None of your while loops make sense. For instance line 173: if this expression (i==Mascota) is true there is no way to stop the loop since i never change.

Occasionaly you use = instead of == (line 69/74), but again: A loop doesn't make sense if the condition never changes.

The switch on line 191: a break; is required after each case, otherwise the following case is also involved.
Topic archived. No new replies allowed.