Criar um Site Grátis Fantástico

Arrays

Arrays

 

array estático

Declarar

var
  Nome do Array: array[1..10] of Integer;

Carregar

begin
  Nome do Array: array[posicao de 1 a 10] := Valor (integer);
end;

Declarar e Carregar  Integer

const
  Nome do Array: array[1..4] of Integer = (3, 2, 6, 12);

Declarar e Carregar string

const
  Nome do Array: array[1..4] of Char = ('A', 'B', 'C', 'D');