Tema: Matrices
Ver Mensaje Individual
  #3  
Antiguo 09-03-2005
Avatar de marcoszorrilla
marcoszorrilla marcoszorrilla is offline
Capo
 
Registrado: may 2003
Ubicación: Cantabria - España
Posts: 11.221
Reputación: 10
marcoszorrilla Va por buen camino
Otro ejemplo:

Código Delphi [-]
 procedure TForm1.Button1Click(Sender: TObject);
 type
   TMatriz = array of Array of Integer;
   var
   m:TMatriz;
 begin
 SetLength(M,2,2);
 M[1,1]:=10;
 M[1,2]:=12;
 
 ShowMessage(IntToStr(M[1,2]));
 
 end;
Un Saludo.
__________________
Guía de Estilo de los Foros
Cita:
- Ça c'est la caisse. Le mouton que tu veux est dedans.
Responder Con Cita