Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: Zahlenkombinationen generieren
9. Mai 2011, 17:20
Delphi-Quellcode:
procedure TForm_Main.Generator(Start, Stop: Integer);
var
x, y, z : Integer;
begin
Memo_Output.Lines.BeginUpdate(); // -> wichtig, wenn man viele Werte
// auf einmal einfügen will
try
// Beachte die Format-Funktion, damit schaut es etwas übersichtlicher aus
for x := Start to Stop do
for y := Start to Stop do
for z := Start to Stop do Memo_Output.Lines.Add(Format('%d%d%d', [x, y, z]));
finally
Memo_Outpu.Lines.EndUpdate();
end;
end;
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|
|
Zitat
|