Pascal/Turbo Pascal - Trabajar con Archivos en Pascal

 
Vista:

Trabajar con Archivos en Pascal

Publicado por Ezequiel (1 intervención) el 25/07/2019 09:48:29
Muy buenas, tengo que realizar una tarea para la universidad en la cual consiste en hacer un programa para un banco donde los usuarios puedan crear cuentas para ver su información en la misma (Código cliente, Titular, Nº de cuenta (8 dígitos) y Saldo.) . En el programa, puede haber un máximo de 1000 clientes, y cada persona puede tener un máximo de 3 cuentas. Ahora bien, ¿cómo puedo establecer ambos límites y cómo puedo trabajar con el archivo de los datos del cliente?

1
2
3
4
5
6
7
type
	clientes_reg = record
	cod_cliente: integer;
	titular: string [20];
	numero_cuenta: integer;
	saldo: integer;
end;

Ese es el registro el cual cree donde puedan ir los datos del cliente. Desde ya, agradezco toda la ayuda posible!
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

Trabajar con Archivos en Pascal

Publicado por ranon (2158 intervenciones) el 05/08/2019 16:14:47
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
{Esto te valdra como ejemplo}
 
program archivos;
uses
   crt;
 
type
   registro = record
            dia:string[2];
            mes:string[2];
            anio:string[4];
            beneficio: string[1];
            nombre: string[30];
            origen: string[2];
            destino: string[2];
            estado : boolean;
       end;
 
var
  row:registro;
  archivo : file of registro;
 
 
procedure escribir_registro(var rec:registro);
begin
   writeln('   Entrada De Datos');
   writeln;
   write('  Dia       : ');readln(rec.dia);
   write('  Mes       : ');readln(rec.mes);
   write('  Anio      : ');readln(rec.anio);
   write('  Beneficio : ');readln(rec.beneficio);
   write('  Nombre    : ');readln(rec.nombre);
   write('  Origen    : ');readln(rec.origen);
   write('  Destino   : ');readln(rec.destino);
   rec.estado := true;
   assign(archivo,'datos.txt');
   {$I-} reset(archivo); {$I+}
   if ioresult <> 0 then
   begin
      rewrite(archivo);
      seek(archivo,0);
      write(archivo,rec);
      close(archivo);
   end
 else
    begin
       seek(archivo,filesize(archivo));
       write(archivo,rec);
       close(archivo);
    end;
end;
 
 
 
procedure leer_registro(nom : string);
var
   t, d : integer;
   toma, entra : string;
begin
    assign(archivo,'datos.txt');
   {$I-} reset(archivo); {$I+}
   if ioresult <> 0 then
   begin
      writeln('  Error De Archivo Pulse Una Tecla');
      readkey;
   end
 else
    begin
    for d := 0 to filesize(archivo) - 1 do
    begin
        seek(archivo,d);
        read(archivo,row);
        for t := 1 to length(row.nombre) do
        toma[t] := upcase(row.nombre[t]);
        for t := 1 to length(nom) do
        entra[t] := upcase(nom[t]);
        if (toma = entra) and (row.estado = true) then
        begin
           clrscr;
          writeln('   Entrada De Datos');
          writeln;
          writeln('  Dia       : ',row.dia);
          writeln('  Mes       : ',row.mes);
          writeln('  Anio      : ',row.anio);
          writeln('  Beneficio : ',row.beneficio);
          writeln('  Nombre    : ',row.nombre);
          writeln('  Origen    : ',row.origen);
          writeln('  Destino   : ',row.destino);
          writeln;
          writeln('  Pulse Una Tecla');
          readkey;
          break;
        end;
    end;
      close(archivo);
   end;
 end;
 
 procedure anularregistro;
 var
   nombr : string;
   r, cont : integer;
   begin
      writeln(' Entre Nombre A Suprimir');
      writeln;
      write(' Nombre : ');
      readln(nombr);
      for cont := 1 to length(nombr) do
      nombr[cont] := upcase(nombr[cont]);
       assign(archivo,'datos.txt');
   {$I-} reset(archivo); {$I+}
   if ioresult <> 0 then
   begin
      writeln('  Error De Archivo Pulse Una Tecla');
      readkey;
   end
 else
    begin
       for cont := 0 to filesize(archivo) - 1 do
       begin
       seek(archivo,cont);
       read(archivo,row);
       for r := 1 to length(row.nombre) do
       row.nombre[r] := upcase(row.nombre[r]);
       if (nombr = row.nombre) and (row.estado = true) then
       begin
          row.estado := false;
          seek(archivo,cont);
          write(archivo,row);
          break;
       end;
    close(archivo);
    end;
   end;
  end;
 
  procedure presentatodo;
  var
    y : integer;
    begin
       assign(archivo,'datos.txt');
     {$I-} reset(archivo); {$I+}
   if ioresult <> 0 then
   begin
      writeln('  Error De Archivo Pulse Una Tecla');
      readkey;
   end
 else
    begin
      for y := 0 to filesize(archivo) - 1 do
      begin
        seek(archivo,y);
        read(archivo,row);
        if row.estado = true then
        writeln(row.dia,'  ',row.mes,'  ',row.anio,'  ',row.beneficio,
        '  ',row.nombre,'  ',row.origen,'  ',row.destino);
 
      end;
       close(archivo);
    end;
  end;
 
 
  procedure menu;
  var
     tecla : char;
     sal : boolean;
     nomb : string;
     i : integer;
   begin
      sal  := false;
   repeat
      clrscr;
      writeln(' ****** Menu Jeneral ******');
      writeln;
      writeln('  [E] = Entradas');
      writeln('  [V] = Visualiza Por Nombre');
      writeln('  [T] = Visualiza Todas');
      writeln('  [X] = Anula Un Registro');
      writeln('  [s] = Salir');
      writeln;
      writeln(' <<<< Elije Opcion >>>>');
      repeat
          tecla := upcase(readkey);
      until tecla in['E','V','T','X','S'];
      clrscr;
     case tecla of
  'E' : escribir_registro(row);
  'V' : begin
          write('  Entre Nombre : ');
          readln(nomb);
          leer_registro(nomb);
        end;
  'T' : presentatodo;
  'X' : anularregistro;
  'S' : sal := true;
    end;
   until sal = true;
   end;
 
 
 
  begin
     menu;
  end.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar