Zitat:
ch möchte Arrays of Cardinal aufsteigend der größe nach sortieren um so die größte Zahl zu ermitteln.
Warum sortierst du das Array denn dann?
Geht doch einfach per
Delphi-Quellcode:
max:=0;
ort:=-5;
for i:=0 to length(list)-1 do
begin
if list[i]>max then
begin
max:= list[i];
ort:= i;
end;
end;
Showmessage('Der größte Eintrag steht an '+inttostr(ort)+'.ter Stelle und beträgt 'floattostr(max));
Erwarte das Beste und bereite dich auf das Schlimmste vor.