This repository has been archived by the owner on May 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tienda.pas
631 lines (592 loc) · 19.9 KB
/
Tienda.pas
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
PROGRAM tienda;
CONST
NCTIPO = 15; {número caracteres tipo}
NCIDENTIFICADOR = 4; {número caracteres del identificador del componente}
MAXPC = 25; {número de ordenadores (PC) máximos en la tienda}
MAXCOMPONENTES = 100; {número de componentes sueltos máximo}
MIN = 1;
TYPE
tTipo = string[NCTIPO]; {Tipo para almacenar el tipo del componente}
tIdentificador = string[NCIDENTIFICADOR]; {Para almacenar el identificador}
tNumComponentes = MIN..MAXCOMPONENTES; {Para almacenar el índice de componentes}
tNumPc = MIN..MAXPC; {Tipo para almacenar el índice de ordenadores}
tComponente = RECORD {Tipo para almacenar un producto}
tipo: tTipo;
id: tIdentificador;
descripcion: string;
precio: real;
END;
tPc = RECORD {Tipo para almacenar un ordenador}
datos, memoria, procesador, discoDuro: tComponente;
END;
tListaComponentes= ARRAY [tNumComponentes] OF tComponente;
tListaPcs = ARRAY [tNumPc] OF tPc;
tAlmacenComponentes = RECORD {Almacén de componentes}
listaComponentes : tListaComponentes;
tope: integer;
END;
tAlmacenPcs = RECORD {Almacén de Pcs}
listaPcs: tListaPcs;
tope: integer;
END;
tTienda = RECORD {Tienda}
almacenPcs: tAlmacenPcs;
almacenComponentes: tAlmacenComponentes;
ventasTotales: real; {Almacena el total de la ventas}
END;
tFicheroPcs = FILE OF tPc;
tFicheroComponentes = FILE OF tComponente;
VAR
opcionMenu:char;
datosTienda:tAlmacenComponentes;
datosTiendapcs:tAlmacenPcs;
dato:tIdentificador;
datoTienda:tTienda;
almacenTienda:tTienda;
encuentra:boolean;
ficheroComponentes :text;
ficheroPcs:text;
nombreFichero:string;
nombreFichero1:string;
ficherocomp:tFicheroComponentes;
ficheropc:tFicheroPcs;
identificador:tIdentificador;
PROCEDURE mostrarMenu;{mostrarMenu}
BEGIN
writeln('********************************');
writeln('Autores: Guillermo Navas Gracia');
writeln(' Ivan Perez Huete');
writeln(' Daniel Peña Martinez');
writeln(' Jesus Prieto Garcia');
writeln('********************************');
writeln;
writeln('***************** MENU *****************');
writeln;
writeln('--------- a) Dar de alta un componente --------');
writeln('--------- b) Configurar un ordenador --------');
writeln('--------- c) Modificar un componente --------');
writeln('--------- d) Vender un componente --------');
writeln('--------- e) Vender un ordenador --------');
writeln('--------- f) Mostrar ventas actuales --------');
writeln('--------- g) Mostrar todos los ordenadores (ordenados por precio) --------');
writeln('--------- h) Mostrar todos los componentes sueltos --------');
writeln('--------- i) Guardar datos en los ficheros binarios --------');
writeln('--------- j) Guardar datos en ficheros de texto --------');
writeln('--------- k) Cargar datos en ficheros binarios --------');
writeln('--------- l) Cargar datos en ficheros de texto --------');
writeln('--------- m) Finalizar --------');
writeln;
writeln('Elija una opcion');
END;{mostrarMenu}
PROCEDURE altaComponente (VAR datos:tAlmacenComponentes);
VAR
i:integer;
contador:integer;
identificador:tIdentificador;
BEGIN{altaComponente}
IF datos.tope<MAXCOMPONENTES THEN BEGIN
i:=datos.tope+1;
WITH datos.listaComponentes[i] DO BEGIN
identificador:=id;
contador:=MIN;
writeln('Introduzca identificador del componente(max. 4 caracteres): ');
readln(id);
WHILE (contador>MAXPC) AND (id<>identificador) DO BEGIN {Verifica que no se repita el identificador}
contador:=contador+1;
IF id=identificador THEN
writeln('Este componente ya está en la tienda')
ELSE
writeln('El componente se puede añadir a la lista');
END;
writeln('Introduzca el tipo de componente (procesador, memoria o disco duro): ');
readln(tipo);
writeln('Introduzca la descripcion del componente: ');
readln(descripcion);
writeln('Introduzca el precio de venta del componente: ');
readln(precio);
END;{WITH}
datos.tope:=datos.tope+1;
END;{IF}
END;{altaComponente}
PROCEDURE Eliminar (VAR datos:tAlmacenComponentes ; idem:string);
VAR
i:integer;
BEGIN
WITH datos DO BEGIN
FOR i:=MIN TO tope DO BEGIN
IF idem = listaComponentes[i].id THEN BEGIN
listaComponentes[i] := listaComponentes[tope];
tope:=tope-1;
END;
END;
END;
END;
PROCEDURE configurarOrdenador(VAR datos:tAlmacenComponentes ; VAR datospcc:tAlmacenPcs );
VAR
i,j:integer;
idmem,iddisco,idproce,identi:tIdentificador;
pc:tNumPc;
aux1,aux2,aux,suma:real;
BEGIN
j:=0;
i:=datospcc.tope;
IF pc=datospcc.tope THEN
writeln('no se puede añadir ninguno mas')
ELSE
BEGIN
writeln('introduzca la id del disco duro');
readln(iddisco);
WITH datos DO
WHILE (iddisco <> listaComponentes[j].id) DO
j:=j+1;
END;
datospcc.listaPcs[i].discoDuro.tipo:=datos.listaComponentes[j].tipo;
datospcc.listaPcs[i].discoDuro.id:=iddisco ;
datospcc.listaPcs[i].discoDuro.descripcion:=datos.listaComponentes[j].descripcion;
datospcc.listaPcs[i].discoDuro.precio:=datos.listaComponentes[j].precio ;
aux:=datospcc.listaPcs[i].discoDuro.precio;
Eliminar( datos,iddisco);
writeln('introduzca la id de la memoria');
readln(idmem);
WITH datos DO
WHILE (idmem <> listaComponentes[j].id) DO BEGIN
j:=j+1;
END;
datospcc.listaPcs[i].memoria.tipo:=datos.listaComponentes[j].tipo;
datospcc.listaPcs[i].memoria.id:=idmem ;
datospcc.listaPcs[i].memoria.descripcion:=datos.listaComponentes[j].descripcion;
datospcc.listaPcs[i].memoria.precio:=datos.listaComponentes[j].precio ;
aux1:=datospcc.listaPcs[i].memoria.precio;
Eliminar( datos,idmem);
writeln('introduzca la id del procesador');
readln(idproce);
WITH datos DO
WHILE (idproce <> listaComponentes[j].id) DO BEGIN
j:=j+1;
END;
datospcc.listaPcs[i].procesador.tipo:=datos.listaComponentes[j].tipo;
datospcc.listaPcs[i].procesador.id:=iddisco ;
datospcc.listaPcs[i].procesador.descripcion:=datos.listaComponentes[j].descripcion;
datospcc.listaPcs[i].procesador.precio:=datos.listaComponentes[j].precio ;
aux2:=datospcc.listaPcs[i].procesador.precio;
Eliminar( datos,idproce);
writeln('Introduzca el identificador del ordenador');
readln(identi);
datospcc.tope:=datospcc.tope + 1;
datospcc.listaPcs[i].datos.id:=identi;
suma:=aux+aux1+aux2+10;
datospcc.listaPcs[i].datos.precio:=suma;
END;
PROCEDURE mostrarVentaComponente (numero:integer; VAR datos:tAlmacenComponentes);
BEGIN{mostrarVentaComponente}
WITH datos.listaComponentes[numero] DO BEGIN
writeln('Tipo: ',tipo);
writeln('Id: ',id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;{WITH}
END;{mostrarVentaComponente}
PROCEDURE venderComponente (iden:tIdentificador; VAR datos:tAlmacenComponentes; VAR datos2:tTienda);
VAR
i:integer;
SiNo:char;
BEGIN{venderComponente}
i:=0;
WITH datos DO BEGIN
WHILE (i<tope) AND (iden<>listaComponentes[i].id) DO BEGIN
i:=i+1;
END;{WHILE}
IF (iden=listaComponentes[i].id) THEN BEGIN
mostrarVentaComponente(i,datos);
writeln('¿Desea eliminar el componente? (s/n)');
readln(SiNo);
CASE SiNo OF
'S', 's': BEGIN
listaComponentes[i]:=listaComponentes[tope];
tope:=tope-1;
writeln('Componente vendido');
END;
'N', 'n': BEGIN
writeln('Venta cancelada por el usuario');
END;
ELSE
writeln('Debe de introducir (s) ó (n)');
END;{CASE}
END
ELSE
writeln('Componente no encontrado');
END;{WITH}
datos2.ventasTotales:=(datos2.ventasTotales + datos.listaComponentes[i].precio);
END;{venderComponente}
PROCEDURE modificarComponente (idMod:string; VAR datos:tAlmacenComponentes);
VAR
i,contador:integer;
nuevoTipo:tTipo;
nuevoDesc:string;
nuevoPrecio:real;
nuevoDato:char;
BEGIN
contador:=0;
WITH datos DO BEGIN
FOR i:=MIN TO tope DO BEGIN
IF (listaComponentes[i].id=idMod) THEN BEGIN
writeln('Componente encontrado, sus datos son: ');
writeln;
writeln('Tipo: ',listaComponentes[i].tipo);
writeln('Id: ',listaComponentes[i].id);
writeln('Descripcion: ',listaComponentes[i].descripcion);
writeln('Precio: ',listaComponentes[i].precio:0:2);
writeln;
writeln('¿Que datos desea modificar? A(Tipo), B(Descricpion), C(Precio) (identifador no es posible)');
readln(nuevoDato);
CASE nuevoDato OF
'a','A': BEGIN
writeln('Introduzca el nuevo tipo: ');
readln(nuevoTipo);
listaComponentes[i].tipo:=nuevoTipo;
END;
'b','B': BEGIN
writeln('Introduzca la nueva descripcion: ');
readln(nuevoDesc);
listaComponentes[i].descripcion:=nuevoDesc;
END;
'c','C': BEGIN
writeln('Introduzca el nuevo precio: ');
readln(nuevoPrecio);
listaComponentes[i].precio:=nuevoPrecio;
END;
ELSE
writeln('Debe de introducir tipo, descripcion o precio');
END;{CASE}
END
ELSE BEGIN
contador:=contador+1;
IF contador=tope THEN
writeln('Componente no encontrado');
END;{IF}
END;{FOR}
END;{WITH}
END;
{PROCEDURE configuracionComponente (VAR datos:tAlmacenComponentes; datosPcs:tAlmacenPcs);}
PROCEDURE venderOrdenador (id:tIdentificador; VAR datosOrd:tAlmacenPcs; tiendaa:tTienda);
VAR
opcionSN:char;
contador,o:integer;
BEGIN
contador:=0;
WITH datosOrd DO BEGIN
FOR o:=MIN TO tope DO BEGIN
IF (listaPcs[o].datos.id=id) OR (listaPcs[o].memoria.id=id) OR (listaPcs[o].procesador.id=id) OR (listaPcs[o].discoDuro.id=id)THEN BEGIN
writeln('Odenador encontrado, sus datos son: ');
writeln;
writeln('Datos: ');
WITH listaPcs[o].datos DO BEGIN
writeln('tipo: ',tipo);
writeln('Id: ' ,id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;
writeln('Memoria: ');
WITH listaPcs[o].memoria DO BEGIN
writeln('tipo: ',tipo);
writeln('Id: ' ,id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;
writeln('Procesador: ');
WITH listaPcs[o].procesador DO BEGIN
writeln('tipo: ',tipo);
writeln('Id: ' ,id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;
writeln('Disco Duro: ');
WITH listaPcs[o].discoDuro DO BEGIN
writeln('tipo: ',tipo);
writeln('Id: ' ,id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;
writeln;
writeln('¿Esta seguro de vender este ordenador?');
readln(opcionSN);
CASE opcionSN OF {CASE}
'S', 's': BEGIN
listaPcs[o]:=listaPcs[tope];
tope:=tope-1;
writeln('El ordenador seleccionado ha sido vendido');
END;
'N', 'n': BEGIN
writeln('Venta cancelada por el usuario');
END;
ELSE
writeln('Debe decidir si vender o no (S/N)');
END;{CASE}
END
ELSE BEGIN
contador:=contador+1;
IF contador=tope THEN
writeln('Odenador no encontrado');
END;{IF}
END;{FOR}
tiendaa.ventasTotales:=(tiendaa.ventasTotales + listaPcs[o].datos.precio);
END;{WITH}
END;
{PROCEDURE mostrarVentas (datos:tTienda);}
PROCEDURE mostrarOrdenadores (dato:tAlmacenPcs);
VAR
i, j:tNumPc ;
o :integer;
aux: real;
BEGIN
FOR i := MIN TO pred(MAXPC) DO
FOR j := MIN TO MAXPC-i DO
IF dato.listaPcs[j].datos.precio > dato.listaPcs[j+1].datos.precio THEN
BEGIN
aux := dato.listaPcs[j].datos.precio ;
dato.listaPcs[j].datos.precio := dato.listaPcs[j+1].datos.precio ;
dato.listaPcs[j+1].datos.precio:= aux
END; {IF}
FOR o:=MIN TO dato.tope DO BEGIN
WITH dato.listaPcs[o] DO BEGIN
writeln('****************');
writeln('Datos: ');
WITH datos DO BEGIN
writeln('tipo: ',tipo);
writeln('Id: ' ,id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;
writeln('Memoria: ');
WITH memoria DO BEGIN
writeln('tipo: ',tipo);
writeln('Id: ' ,id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;
writeln('Procesador: ');
WITH procesador DO BEGIN
writeln('tipo: ',tipo);
writeln('Id: ' ,id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;
writeln('Disco Duro: ');
WITH discoDuro DO BEGIN
writeln('tipo: ',tipo);
writeln('Id: ' ,id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;
writeln('****************');
END; {WITH}
END;{FOR}
END;
PROCEDURE mostrarComponentes (datos:tAlmacenComponentes);
VAR
i:integer;
BEGIN
FOR i:=MIN TO datos.tope DO BEGIN
WITH datos.listaComponentes[i] DO BEGIN
writeln('Tipo: ',tipo);
writeln('Id: ',id);
writeln('Descripcion: ',descripcion);
writeln('Precio: ',precio:0:2);
END;{WITH}
END;{FOR}
END;
PROCEDURE guardarDatosBin (VAR fich:tFicheroComponentes;VAR fichPcs:tFicheroPcs; datos:tAlmacenComponentes ; datosPcs:tAlmacenPcs);
VAR
i:integer;
nombreFichero,nombreFicheroO:string;
BEGIN{guardardatos }
writeln('Introduce el nombre del fichero donde se guardaran los datos de los componentes:');
readln(nombreFichero);
assign(fich,nombreFichero);
rewrite(fich);
FOR i:=MIN to datos.tope DO BEGIN
write(fich,datos.listaComponentes[i]);
writeln();
writeln('...Componentes guardados en componentes.dat');
END;
close(fich);
writeln('Introduce el nombre del fichero donde quieres que se guarden los datos de los Ordenadores:');
readln(nombreficheroO);
assign(fichPcs,nombreficheroO);
rewrite(fichPcs);
FOR i:=MIN to datosPcs.tope DO
write(fichPcs,datosPcs.listaPcs[i]);
writeln();
write('...Ordenadores guardados en ordenadores.dat');
END;{guardar datos bin}
PROCEDURE guardarDatosText (datosComp:tAlmacenComponentes; datosPcs:tAlmacenPcs; VAR fichComp:text ; VAR fichPcs:text );
VAR
i:integer;
BEGIN
rewrite(fichComp);
WITH datosComp DO BEGIN
FOR i:=MIN to tope DO BEGIN
write(fichComp,listaComponentes[i].tipo,' ');
write(fichComp,listaComponentes[i].id,' ');
writeln(fichComp,listaComponentes[i].descripcion,' ');
writeln(fichComp,listaComponentes[i].precio,' ');
END;
END;
close(fichComp);
writeln('...Componentes guardados correctamente');
rewrite(fichPcs);
WITH datosPcs DO BEGIN
FOR i:=MIN to tope DO BEGIN
write(fichPcs,listaPcs[i].datos.tipo,' ');
write(fichPcs,listaPcs[i].datos.id,' ');
write(fichPcs,listaPcs[i].datos.descripcion,' ');
write(fichPcs,listaPcs[i].datos.precio,' ');
write(fichPcs,listaPcs[i].memoria.tipo,' ');
write(fichPcs,listaPcs[i].memoria.id,' ');
write(fichPcs,listaPcs[i].memoria.descripcion,' ');
write(fichPcs,listaPcs[i].memoria.precio,' ');
writeln(fichPcs,listaPcs[i].procesador.tipo,' ');
writeln(fichPcs,listaPcs[i].procesador.id,' ');
writeln(fichPcs,listaPcs[i].procesador.descripcion,' ');
writeln(fichPcs,listaPcs[i].procesador.precio,' ');
writeln(fichPcs,listaPcs[i].discoDuro.tipo,' ');
writeln(fichPcs,listaPcs[i].discoDuro.id,' ');
writeln(fichPcs,listaPcs[i].discoDuro.descripcion,' ');
writeln(fichPcs,listaPcs[i].discoDuro.precio,' ');
END;
END;
close(fichPcs);
writeln('...Ordenadores guardados correctamente');
END;
PROCEDURE cargarDatosBin (VAR datosComp:tAlmacenComponentes; VAR datosPcs:tAlmacenPcs; VAR fichComp:tFicheroComponentes; VAR fichPcs:tFicheroPcs);
VAR
i:integer;
BEGIN
i:=MIN;
reset(fichComp);
WHILE NOT EOF(fichComp) DO BEGIN
read(fichComp,datosComp.listaComponentes[i]);
i:=i+1;
END;
close(fichComp);
datosComp.tope:=i-1;
reset(fichPcs);
WHILE NOT EOF(fichPcs) DO BEGIN
read(fichPcs,datosPcs.listaPcs[i]);
i:=i+1;
END;
close(fichPcs);
datosPcs.tope:=i-1;
END;
PROCEDURE cargarDatosText ;
VAR
linea: string;
archivo:string;
fichero: text;
BEGIN {mostrarClasificacionFichero}
writeln('Introduzca la direccion en donde se encuentra el archivo que desea abrir componentes.txt');
readln(archivo);
assign(fichero, archivo);
writeln;
writeln;
reset(fichero);
WHILE NOT EOF(fichero) DO BEGIN
readln(fichero, linea);
writeln(linea);
END;
close(fichero);
readln();
writeln('Introduzca la direccion en donde se encuentra el archivo que desea abrir ordenador.txt');
readln(archivo);
assign(fichero, archivo);
writeln;
writeln;
reset(fichero);
WHILE NOT EOF(fichero) DO BEGIN
readln(fichero, linea);
writeln(linea);
END;
close(fichero);
readln();
END;
BEGIN{programaPrincipal}
REPEAT
mostrarMenu;
readln(opcionMenu);
CASE opcionMenu OF
'a', 'A': BEGIN{altaComponente}
altaComponente(datosTienda);
END;{altaComponente}
'b', 'B': BEGIN{configurarOrdenador}
configurarOrdenador(datosTienda,datosTiendapcs);
END;{configurarOrdenador}
'c', 'C': BEGIN{modificarComponente}
IF datosTienda.tope<=0 THEN BEGIN
writeln('No hay componentes en la tienda');
END
ELSE
writeln('Identificador del componente a modificar');
readln(dato);
modificarComponente(dato,datosTienda);
END;{modificarComponente}
'd', 'D': BEGIN{venderComponente}
IF datosTienda.tope<=0 THEN BEGIN
writeln('No hay componentes en la tienda');
END
ELSE
writeln('Identificador del componente a vender');
readln(dato);
venderComponente(dato,datosTienda,datoTienda);
END;{venderComponente}
'e', 'E': BEGIN{venderOrdenador}
writeln ('Introduzca la id del ordenador que desea vender');
readln(dato);
venderOrdenador(dato,datosTiendapcs,datoTienda);
END;{venderOrdenador}
'f', 'F': BEGIN{mostrarVentas}
writeln('Se ha producido un total de :',almacenTienda.ventasTotales:2:2,'');
END;{mostrarVentas}
'g', 'G': BEGIN{mostrarOrdenadores}
mostrarOrdenadores(datosTiendapcs);
END;{mostrarOrdenadores}
'h', 'H': BEGIN{mostrarComponentes}
IF datosTienda.tope<=0 THEN BEGIN
writeln('No hay componentes en la tienda');
END
ELSE
writeln('Los componentes actuales de la tienda: ');
mostrarComponentes(datosTienda);
END;{mostrarComponentes}
'i', 'I': BEGIN{guardarDatosBin}
{writeln('Introduce el nombre del fichero donde se guardaran los datos de los ordenadores:');
readln(nombreFichero1);
assign(ficheropc,nombreFichero1);}
guardarDatosBin(ficherocomp,ficheropc,datosTienda,datosTiendaPcs);
END;{guardarDatosBin}
'j', 'J': BEGIN{guardarDatosText}
writeln('Introduce el nombre del fichero donde se guardaran los datos de los componentes:');
readln(nombreFichero);
writeln('Introduce el nombre del fichero donde se guardaran los datos de los ordenadores:');
readln(nombreFichero1);
assign(ficheroComponentes,nombreFichero);
assign(ficheroPcs,nombreFichero1);
guardarDatosText(datosTienda,datosTiendapcs,ficheroComponentes,ficheroPcs);
END;{guardarDatosText}
'k', 'K': BEGIN{cargarDatosBin}
assign(ficherocomp,'C:\Users\guillermo\Desktop\componentes.dat');
assign(ficheropc,'C:\Users\guillermo\Desktop\ordenadores.dat');
cargarDatosBin(datosTienda,datosTiendapcs,ficherocomp,ficheropc);
END;{cargarDatosBin}
'l', 'L': BEGIN{cargarDatosText}
cargarDatosText;
END;{cargarDatosText}
'm', 'M': BEGIN{finalizar}
writeln('Programa terminado, pulse INTRO para salir del programa, GRACIAS');
END;{finalizar}
ELSE
writeln('La opcion introducida es incorrecta');
END;{CASE}
UNTIL (opcionMenu='m') OR (opcionMenu='M');
readln;
END.
{programaPrincipal}