mmh das keiner weiß poste ich ma den Hauptquelltext
Delphi-Quellcode:
If Fehler <> true Then
begin
For x := min_x to max_x do
begin
For y := min_y to max_y do
begin
If x < y Then
begin
z1 := x*x + y*y;
z := sqrt (z1);
if round(z)=z then
begin
Ausgabe := ( inttostr (x) + '; ' +inttostr (y) + '; ' + FloattoStr (z));
Memo.Lines.Add (Ausgabe);
Liste.Add(Ausgabe);
Counter := Counter + 1;
end;
end;
end;
end;
Memo.Lines.Add(inttostr (counter) + ' Zahlentrippel');
counter := 0;
end;
Seht ma durch und schaut was das problem ist
Axxus