ich glaube er meint:
Code:
Label6.Caption:=inttostr(an[1])+#10+inttostr(an2)+#10+inttostr(an3);
bis Variable 11 ist das aber zu umständlich
besser
Code:
var dummy : string;
x : byte;
begin
dummy:='';
for x:=1 to 11 do
dummy:=dummy+inttostr(an[x])+#10;
Label6.Caption:=dummy;
end;