Ver Mensaje Individual
  #2  
Antiguo 12-10-2006
Avatar de Lonidas
Lonidas Lonidas is offline
Miembro
 
Registrado: abr 2006
Posts: 35
Reputación: 0
Lonidas Va por buen camino
Prueba con esto...
Código Delphi [-]
 
var
arreglo:array[1..10]of integer;
i:integer;

begin
for i:=1 to 10 do
 begin
  arreglo[i]:=strtoint(edit1.text[i]);
 end;
for i:=1 to 10 do
 begin
  showmessage(inttostr(arreglo[i]));
 end;

Última edición por Lonidas fecha: 12-10-2006 a las 14:58:34.
Responder Con Cita