Pascal/Turbo Pascal - COMO UNO UN MENU A UN PROGRAMA

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

COMO UNO UN MENU A UN PROGRAMA

Publicado por Vanesa (2 intervenciones) el 21/07/2019 19:54:53
YA TENGO EL PROGRAMA PERO ME FALTA UNIRLOS AYUDAA
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
uses crt;
 
procedure altas;
 
type
 
registro=record
 
titulo:string;
 
autor:string;
 
end;
 
var
 
disco:registro;
 
begin
 
clrscr;
 
writeln('Ingrese titulo: ');
 
readln(disco.titulo);
 
writeln('Ingrese autor');
 
readln(disco.autor);
 
writeln('--------Informacion Ingresada--------');
 
writeln('Titulo: ',disco.titulo);
 
writeln('Autor: ',disco.autor);
 
 
 
end;
 
var
 
opcion:char;
 
begin
 
clrscr;
 
writeln('--------Menu Principal---------');
 
writeln('-------1- Altas--------');
 
writeln('-------2- Salir--------');
 
readln(opcion);
 
case opcion of
 
'1': altas;
 
'2': exit;
 
end;
 
readkey;
 
end;
 
 
 
 var
     a,b,c,d:integer;
     x,y:real;
begin
     clrscr;
     write('Ingrese coeficiente a: ');
     readln(a);
 
     while a = 0 do begin
         write('Ingrese coeficiente a: ');
         readln(a);
     end;
 
     write('Ingrese coeficiente b: ');
     readln(b);
     write('Ingrese coeficiente c: ');
     readln(c);
 
     d:= b*b-4*a*c;
 
     if d > 0 then begin
         x:= (-b+sqrt(d))/(2*a);
         y:= (-b-sqrt(d))/(2*a);
         writeln('x1 = ',x:4:2);
         writeln('x2 = ',y:4:2);
     end
     else if d = 0 then begin
         x:= (-b)/(2*a);
         writeln('x1 = ',x:4:2);
     end
     else
         writeln('La ecuacion no tiene solucion')
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

COMO UNO UN MENU A UN PROGRAMA

Publicado por ranon (2158 intervenciones) el 05/08/2019 16:59:54
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
{Mira esto de dejara un ejemplo que te ayudara}
 
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;   {Informacion De Activo O Nulo}
       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;
       writeln;
       writeln(' Pulse Una Tecla');
       readkey;
       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