Pascal/Turbo Pascal - Programa en DevPascal192 (juego del ahorcado, código de barras, protector de pantalla)

 
Vista:
sin imagen de perfil
Val: 2
Ha aumentado su posición en 29 puestos en Pascal/Turbo Pascal (en relación al último mes)
Gráfica de Pascal/Turbo Pascal

Programa en DevPascal192 (juego del ahorcado, código de barras, protector de pantalla)

Publicado por Nahuel (2 intervenciones) el 13/10/2018 22:16:45
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
program cod_barra;
uses crt,sysutils;
 
type
    vector = array [1..30] of string;
 
Var
i,opc,lnCod,lnImp,r,SumaPar,SumaImpar,lnDigVerif,lnValPosc,n,z,k,t,lnDig,longitud:integer;
lcCod,lcImp,lcPrimerCodigo,lcDigVerif,lcValPosc,lcCodNum,lcDig,numero,aux,lcValCodBarra,lcCodBarra,palabra:string;
tecla:char;
v:vector;
 
procedure comienzo;
begin
    clrscr;
    textcolor(15);
    writeln;
    writeln('           -------- PROGRAMA --------');
 
    writeln;
    writeln('        Menu:');
    writeln('        1. Juego');
    writeln('        2. Calculos');
    writeln('        3. Codigo de barras');
    writeln('        4. FIN');
    writeln();
    writeln('  (presione la opcion que desea ejecutar)');
    readln(opc);
 
end;
procedure ahorcado;
 
    procedure cargar(var v:vector;pal:string);
    var i:integer;
     begin
         longitud:=length(pal);
        for i:=1 to longitud do
            v[i]:='_';
     end;
 
     procedure mostrar(v:vector;pal:string);
     var i:integer;
      begin
        for i:=1 to longitud do
          write(v[i],' ');
      end;
 
      procedure letras(var v:vector;pal:string);
      var l:string;
      i,aux,c,y,d:integer;
      begin
           c:=1;
           d:=1;
           y:=1;
        readln(l);
 
       while (c<=7) and (d<=longitud) do               //INGRESO DE LAS LETRAS
       begin
          gotoxy(25,12);
                        mostrar(v,palabra);
          gotoxy(1,y);
          y:=y+1;
          write('ingrese una letra:');
          readln(l);
          aux:=0;
 
 
          for i:=1 to longitud do
          begin
            if l=pal[i] then
               begin
                 v[i]:=pal[i];
                 aux:=1;
                 d:=d+1;
               end;
          end;
 
 
          if aux=0 then
                    begin
          if c=1 then
             begin
                  gotoxy(28,3);
                  writeln('O');
                  c:=c+1;
              end
 
              else
              if c=2 then
                 begin
                   gotoxy(28,4);
                   writeln('|');
                   c:=c+1;
                 end
 
              else
              if c=3 then
                   begin
                      gotoxy(27,4);
                      writeln('/');
                      c:=c+1;
                   end
 
 
              else
              if c=4 then
                 begin
                    gotoxy(29,4);
                    writeln('\');
                    c:=c+1;
                 end
 
 
                 else
                 if c=5 then
                    begin
                      gotoxy(27,5);
                      writeln('/');
                      c:=c+1;
                    end
 
                 else
                 if c=6 then
 
                    begin
                        gotoxy(29,5);
                        writeln('\');
                        c:=c+1;
                    end
 
 
                    else
                      begin
                        gotoxy(25,13);
                        writeln('PERDISTE, la palabra era ', pal);
                        c:=c+1;
                        gotoxy(27,3);
                        writeln('___');
                     end;
 
 
            end;
 
 
 
            if d>longitud then
                   begin
                      gotoxy(25,13);
                      writeln('FELICITACIONES GANASTE');
                    end;
              end;
           end;
 
 
 
 
  procedure mastil;
    begin
         gotoxy(28,2);
         writeln('|');
         gotoxy(25,1);
         writeln('___');
         gotoxy(24,2);
         writeln('|');
         gotoxy(24,3);
         writeln('|');
         gotoxy(24,4);
         writeln('|');
         gotoxy(24,5);
         writeln('|');
         gotoxy(24,6);
         writeln('|');
         gotoxy(25,6);
         writeln('__');
         gotoxy(22,6);
         writeln('__');
     end;
 
 
 
 procedure salida;
 begin
      gotoxy(1,24);
          writeln('el juego termino, presione un tecla para salir');
      readkey;
  end;
 
 
     procedure juego;
      begin
      clrscr;                                                 //ingreso de la palabra
        while palabra='' do
              begin
                   gotoxy(1,1);
                      write('ingrese una palabra para empezar a jugar:');
                        readln(palabra);
               end;
               readkey;
                 clrscr;
 
                 mastil;
                 cargar(v,palabra);
                 letras(v,palabra);
                 gotoxy(25,12);
                 mostrar(v,palabra);
                 salida;
      end;
 
 
 
 
 
 
          procedure menu;
                    begin
                         tecla:=' ';
                         while (tecla<>'4') do
                               begin
                                    clrscr;
                                  gotoxy(21,2);
                                   writeln('   --- JUEGO DEl AHORCADO ---   ');
                                  writeln;
                                  writeln('1-JUGAR');
                                  writeln('4-Salir');
                                 gotoxy(40,24);
                                  write('Ingresar una opcion:');
                                  read(tecla);
                                   case tecla of
                                   '1':juego;
                                   end;
                            end;
                       end;
 
                       begin
                       menu;
                       end;
 
 
 
 
 procedure protector_pantalla;                                       // protector de pantalla
 
 
 
     begin
      clrscr;
         repeat
           for i:= 1 to 1 do
             begin
              textcolor(random(15)+1);
               write(' . ');
              end;
          until keypressed;
 
            while keypressed do
                begin
                 comienzo;
                end;
       end;
 
 
 
 
 
                                                                 // codigo de barras
procedure codigo_de_barras;
 
          begin
             writeln;
   writeln('                --- CODIGO DE BARRA ---');
   writeln;
   write  ('    Introduzca el CODIGO DE LA EMPRESA:');
                          readln(lnCod);
 
                          lcCod:= inttostr(lnCod);
   writeln;
   write  ('    Introduzca el IMPORTE:');
                        readln(lnImp);
                          lcImp:= inttostr(lnImp);
 
 
                        for r:=length(lcImp) to 3 do
                           begin
                             lcImp:=concat('0',lcImp);
                            end;
 
                                lcPrimerCodigo:=concat(lcCod,lcImp);
                                writeln;
 
 
 
                             for n:=1 to 7 do
                                  begin
 
 
 
                                    lcValPosc:=copy(lcPrimerCodigo,n,1);
 
                                    lnValPosc:= strtoint(lcValPosc);
 
                                         if (n mod 2 = 0) then
                                           sumaPar:=sumaPar+lnValPosc
 
                                         else
                                           sumaImpar:=sumaImpar+lnValPosc;
                                    end;
 
 
                              writeln;
 
 
 
 
                                   lnDigVerif:= abs(sumaPar - sumaImpar) div 10;
                                   writeln;
 
 
                                        lcDigVerif:=inttostr(lnDigVerif);
 
                                        lcCodNum:= concat(lcCod,lcImp,lcDigVerif);
                                     writeln;
                                        writeln('Codigo Numerico: ',lcCodNum);
 
 
 
             lcValCodBarra:='';                                      // PARTE DE LO BINARIO
             for k:=1 to 8 do
                 begin
 
                  lcDig:=copy(lcCodNum,k,1);
 
                  lnDig:=strtoint(lcDig);
 
                   numero:='';
                   aux:='';
                        while (lnDig<>0) do
                                begin
                                     str (lnDig mod 2,aux);
                                     insert (aux,numero,1);
                                     lnDig:=lnDig div 2;
                                end;
 
 
 
            if (length(numero) <> 4 ) then
                 begin
                       for t:=length(numero) to 3 do
                           begin
                             numero:=concat('0',numero);
                            end; //t
 
                  end;  // if
 
                  lcValCodBarra:=lcValCodBarra+numero;
 
            end; // for    8
 
                 writeln (lcValCodBarra);
 
                 lcCodBarra:='';
 
                 for z:=1 to 32 do
                     begin
                          lcDig:=copy(lcValCodBarra,z,1);
 
 
                                  if (lcDig ='1' ) then
 
                                   lcCodBarra:=lcCodBarra+'|';
 
 
                                  if (lcDig='0') then
 
                                    lcCodBarra:=lcCodBarra+' ';
                     end;
                     writeln;
 
                     writeln(lcCodBarra);
 
                              readkey;
 
 
          end;
 
 
   Begin
 
                     begin
                     comienzo;
                     end;
 
                    repeat
 
                     case opc of
 
               1:    begin
                        ahorcado;
                         readkey;
                          comienzo;
                      end;
 
               2:    begin
                     protector_pantalla;
                     end;
 
 
 
               3:  begin
                    codigo_de_barras;
                         readkey;
                          comienzo;
                   end;
 
 
                 else  // parte del error
                     repeat
                   writeln('  * ERROR *');
                   writeln('las opciones validas son 1 o 2 o 3 ');
                         readkey;
                     comienzo;
                      until (opc = 1) or (opc = 2 ) or (opc = 3);
           end;   //case
 
         until (opc = 4);
 
 
 
     readkey;
   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