Pascal/Turbo Pascal - Ayuda Error 201 FPC

 
Vista:
sin imagen de perfil

Ayuda Error 201 FPC

Publicado por Jhon (1 intervención) el 08/12/2016 22:57:50
Buenas Tardes, necesito ayuda con un pequeño problema con un programa en Free Pascal.
Debo hacer una factura que registre el nombre, el riff y la dirección de una persona, luego almacenar en una matriz N cantidad de productos, con su respectivo código, precio, descripción y la cantidad.
Ademas que luego me calcule el iva, me de el sub total y el total general.
Mi inconveniente esta en, al momento de escribir la cantidad de productos luego de haber seleccionado entre varios de un menú me tira un error, para ser especifico: "Exitcode = 201".
Agradecería mucho su ayuda, criticas constructivas y consejos, recién estoy empezando en este mundo de la programación.
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
program exm1n;
uses
wincrt,crt;
var
nmbr,dir,riff,v: string;
cntd,cdig,m,x,z,sp: integer;
ttl,tltalg,acm1,ivacm,ivv: real;
mat: Array[1..10,1..10] of string;
rsp: char;
begin
 Clrscr;
 write('--- F A C T U R A ---');
 WRITELN;
 writeln;
 write('Por favor indique su nombre: ');
 readln(nmbr);
 write('Por favor indique su rif o cedula: ');
 readln(riff);
 write('Por favor indique su direccion: ');
 readln(dir);
 clrscr;
  repeat
   writeln('-- Productos -- ');
   writeln('1. Harina: 1200,00bs ');
   writeln('2. Detergente: 2850,00bs');
   writeln('3. Arroz: 1360,00bs');
   writeln('4. Pasta: 1580,00bs');
   writeln('5. Miscelaneos: 760,00bs');
   writeln('6. Viveres: 1200,00bs');
   writeln;
   writeln('Todos los productos incluyen IVA');
   writeln;
   Repeat
        write('Por favor introduzca el codigo del producto que desea adquirir: ');
        readln(v);
        m:=0;
        val(v,cdig,m);
        if (m=1) then
          writeln('Error. . .');
      until (m=0);
   Repeat
        write('Por favor introduzca la cantidad que desea llevar: ');
        readln(v);
        m:=0;
        val(v,cntd,m);
        if (m=1) then
          writeln('Error. . .');
      until (m=0);
   case cdig of
      1:begin
          Clrscr;
          ttl:= 1056*cntd;
          ivacm:= 144*cntd;
          ivv:= ivv+ivacm;
          acm1:= acm1+ttl;
          mat[x,z]:= ('1');
          mat[x,z+1]:= ('Detergente');
          Str(cntd,mat[x,z+2]);
          mat[x,z+3]:= ('2508,00');
          str(ttl:0:2,mat[x,z+4]);
          end;
      2:begin
          Clrscr;
          ttl:= 2508*cntd;
          ivacm:= 342*cntd;
          ivv:= ivv+ivacm;
          acm1:= acm1+ttl;
          mat[x+1,z]:= '2';
          mat[x+1,z+1]:= 'Detergente';
          Str(cntd,mat[x+1,z+2]);
          mat[x+1,z+3]:= '2508,00';
          str(ttl:0:2,mat[x+1,z+4]);
          end;
      3:begin
          Clrscr;
          ttl:= 1197.8*cntd;
          ivacm:= 162.2*cntd;
          ivv:= ivv+ivacm;
          acm1:= acm1+ttl;
          mat[x+2,z]:= '3';
          mat[x+2,z+1]:= 'Arroz';
          Str(cntd,mat[x+2,z+2]);
          mat[x+2,z+3]:= '1197,8,00';
          str(ttl:0:2,mat[x+2,z+4]);
          end;
      4:begin
          Clrscr;
          ttl:= 1390.4*cntd;
          ivacm:= 1896*cntd;
          ivv:= ivv+ivacm;
          acm1:= acm1+ttl;
          mat[x+3,z]:= '4';
          mat[x+3,z+1]:= 'Pasta';
          Str(cntd,mat[x+3,z+2]);
          mat[x+3,z+3]:= '1390,4';
          str(ttl:0:2,mat[x+3,z+4]);
          end;
       5:begin
          Clrscr;
          ttl:= 668.8*cntd;
          ivacm:= 91.2*cntd;
          ivv:= ivv+ivacm;
          acm1:= acm1+ttl;
          mat[x+4,z]:= '5';
          mat[x+4,z+1]:= 'Miscelaneos';
          Str(cntd,mat[x+4,z+2]);
          mat[x+4,z+3]:= '668,8';
          str(ttl:0:2,mat[x+4,z+4]);
          end;
        6:begin
          Clrscr;
          ttl:= 1056*cntd;
          ivacm:= 144*cntd;
          ivv:= ivv+ivacm;
          acm1:= acm1+ttl;
          mat[x+5,z]:= '6';
          mat[x+5,z+1]:= 'Viveres';
          Str(cntd,mat[x+5,z+2]);
          mat[x+5,z+3]:= '1056,00';
          str(ttl:0:2,mat[x+5,z+4]);
          end;
       end;
  writeln('Desea Facturar otro producto <S/N>: ');
  readln(rsp);
  until (rsp='N') or (rsp='n');
 Clrscr;
 writeln('-Factura-');
 writeln;
 writeln('nombre: ',nmbr);
 writeln('Riff: ',riff);
 writeln('Direccion: ',dir);
 writeln;
 writeln;
 writeln('    Codigo    Produc.    Cant    Pvp     Total');
 writeln(' _____________________________________________');
 writeln;
 for x:=1 to 6 do
   begin
    sp:=6;
     for z:=1 to 7 do
       begin
        gotoxy(z+sp,x+9);
        write(mat[x,z]);
        sp:= sp+10;
       end;
    end;
 gotoxy(41,25);
 writeln('SubTotal: ',acm1:0:2);
 gotoxy(41,26);
 writeln('IVA: ',ivv:0:2);
 gotoxy(41,27);
 writeln('Total: ',acm1+ivv:0:2);
writeln;
writeln('Presione <Enter> para salir. . .');
repeat until keypressed;
exit;
end.
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

Ayuda Error 201 FPC

Publicado por David (224 intervenciones) el 10/12/2016 17:45:01
Te dejo señalado en el código el primer error que encontré. No me he detenido a depurar más, porque si estás aprendiendo y te resolvemos todo, no te servirá para aprender:

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
program exm1n;
 
uses
 
wincrt,crt;
 
var
 
nmbr,dir,riff,v: string;
 
cntd,cdig,m,x,z,sp: integer;
 
ttl,tltalg,acm1,ivacm,ivv: real;
 
mat: Array[0..9,0..9] of string;
 
rsp: char;
 
begin
 
 Clrscr;
 
 write('--- F A C T U R A ---');
 
 WRITELN;
 
 writeln;
 
 write('Por favor indique su nombre: ');
 
 readln(nmbr);
 
 write('Por favor indique su rif o cedula: ');
 
 readln(riff);
 
 write('Por favor indique su direccion: ');
 
 readln(dir);
 
 clrscr;
 
  repeat
 
   writeln('-- Productos -- ');
 
   writeln('1. Harina: 1200,00bs ');
 
   writeln('2. Detergente: 2850,00bs');
 
   writeln('3. Arroz: 1360,00bs');
 
   writeln('4. Pasta: 1580,00bs');
 
   writeln('5. Miscelaneos: 760,00bs');
 
   writeln('6. Viveres: 1200,00bs');
 
   writeln;
 
   writeln('Todos los productos incluyen IVA');
 
   writeln;
 
   Repeat
 
        write('Por favor introduzca el codigo del producto que desea adquirir: ');
 
        readln(v);
 
        m:=0;
 
        val(v,cdig,m);
 
        if (m=1) then
 
          writeln('Error. . .');
 
      until (m=0);
 
   Repeat
 
        write('Por favor introduzca la cantidad que desea llevar: ');
 
        readln(v);
 
        m:=0;
 
        val(v,cntd,m);
 
        if (m=1) then
 
          writeln('Error. . .');
 
      until (m=0);
 
   case cdig of
 
      1:begin
 
          Clrscr;
 
          ttl:= 1056*cntd;
 
          ivacm:= 144*cntd;
 
          ivv:= ivv+ivacm;
 
          acm1:= acm1+ttl;
 
          mat[x,z]:= ('1');
 
          mat[x,z+1]:= ('Detergente');
 
          Str(cntd,mat[x,z+2]);
 
          mat[x,z+3]:= ('2508,00');
 
          str(ttl:0:2,mat[x,z+4]);
 
          end;
 
      2:begin
 
          Clrscr;
 
          ttl:= 2508*cntd;
 
          ivacm:= 342*cntd;
 
          ivv:= ivv+ivacm;
 
          acm1:= acm1+ttl;
 
          mat[x+1,z]:= '2';  //aqu¡ intentas acceder a una posici¢n del array que no existe. al llegar a este punto
                            //tanto x como z, tienen valor 0, y como tu array va de 1 a 10->Error
                           //Con las pruebas que yo he hecho el error salta aqu¡, pero puede pasar igual en otros puntos. No me he     
                          //detenido a depurar más.
                          //Compruébalo. Si después sigues teniendo dudas, vuelve a escribir
 
         mat[x+1,z+1]:= 'Detergente';
 
          Str(cntd,mat[x+1,z+2]);
 
          mat[x+1,z+3]:= '2508,00';
 
          str(ttl:0:2,mat[x+1,z+4]);
 
          end;
 
      3:begin
 
          Clrscr;
 
          ttl:= 1197.8*cntd;
 
          ivacm:= 162.2*cntd;
 
          ivv:= ivv+ivacm;
 
          acm1:= acm1+ttl;
 
          mat[x+2,z+1]:= '3';
 
          mat[x+2,z+1]:= 'Arroz';
 
          Str(cntd,mat[x+2,z+2]);
 
          mat[x+2,z+3]:= '1197,8,00';
 
          str(ttl:0:2,mat[x+2,z+4]);
 
          end;
 
      4:begin
 
          Clrscr;
 
          ttl:= 1390.4*cntd;
 
          ivacm:= 1896*cntd;
 
          ivv:= ivv+ivacm;
 
          acm1:= acm1+ttl;
 
          mat[x+3,z]:= '4';
 
          mat[x+3,z+1]:= 'Pasta';
 
          Str(cntd,mat[x+3,z+2]);
 
          mat[x+3,z+3]:= '1390,4';
 
          str(ttl:0:2,mat[x+3,z+4]);
 
          end;
 
       5:begin
 
          Clrscr;
 
          ttl:= 668.8*cntd;
 
          ivacm:= 91.2*cntd;
 
          ivv:= ivv+ivacm;
 
          acm1:= acm1+ttl;
 
          mat[x+4,z]:= '5';
 
          mat[x+4,z+1]:= 'Miscelaneos';
 
          Str(cntd,mat[x+4,z+2]);
 
          mat[x+4,z+3]:= '668,8';
 
          str(ttl:0:2,mat[x+4,z+4]);
 
          end;
 
        6:begin
 
          Clrscr;
 
          ttl:= 1056*cntd;
 
          ivacm:= 144*cntd;
 
          ivv:= ivv+ivacm;
 
          acm1:= acm1+ttl;
 
          mat[x+5,z]:= '6';
 
          mat[x+5,z+1]:= 'Viveres';
 
          Str(cntd,mat[x+5,z+2]);
 
          mat[x+5,z+3]:= '1056,00';
 
          str(ttl:0:2,mat[x+5,z+4]);
 
          end;
 
       end;
 
  writeln('Desea Facturar otro producto <S/N>: ');
 
  readln(rsp);
 
  until (rsp='N') or (rsp='n');
 
 Clrscr;
 
 writeln('-Factura-');
 
 writeln;
 
 writeln('nombre: ',nmbr);
 
 writeln('Riff: ',riff);
 
 writeln('Direccion: ',dir);
 
 writeln;
 
 writeln;
 
 writeln('    Codigo    Produc.    Cant    Pvp     Total');
 
 writeln(' _____________________________________________');
 
 writeln;
 
 for x:=1 to 6 do
 
   begin
 
    sp:=6;
 
     for z:=1 to 7 do
 
       begin
 
        gotoxy(z+sp,x+9);
 
        write(mat[x,z]);
 
        sp:= sp+10;
 
       end;
 
    end;
 
 gotoxy(41,25);
 
 writeln('SubTotal: ',acm1:0:2);
 
 gotoxy(41,26);
 
 writeln('IVA: ',ivv:0:2);
 
 gotoxy(41,27);
 
 writeln('Total: ',acm1+ivv:0:2);
 
writeln;
 
writeln('Presione <Enter> para salir. . .');
 
repeat until keypressed;
 
exit;
 
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