Ich gebe zu, ich verstehe das Problem nicht ganz
Wenn du einfach nur etwas iterativ berechnen (und auflisten) Willst, würde ich ein Stringgrid empfehlen
Delphi-Quellcode:
function next_y (yn, n: real): real;
// Bekommt n und y[n]- gibt y[n+1] zurück
const
k = 4;
h = 12;
begin
Result := yn + h * Math.exp(k*n) * k; // z.B.
end;
// und dann halt das Stringgrid befüllen:
procediure ButtonClick
var
n: Integer;
y: real;
begin
y := 42 // Startwert;
for n := 1 to 12 do
begin
Stringgrid.Cells[n, 0] := inttostr(n);
Stringgrid.Cells[n, 1] := floattostr(y);
y := next_y(y, n);
end;
Oder hab ich da was nicht ganz begriffen?
Ich guck mir das da oben nochmal an ...