Registriert seit: 5. Apr 2011
13 Beiträge
|
AW: Wert - Quadrat - Kubus
29. Apr 2011, 15:37
Delphi-Quellcode:
implementation
uses Math;
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
const
C_LIMIT=100;
var
i,j:Integer;
begin
StringGrid1.RowCount := C_LIMIT + 1;
StringGrid1.ColCount := 3;
for I := 0 to C_LIMIT do
begin
for j := 1 to 3 do
StringGrid1.Cells[j - 1,i] := FloatToStr(Power( i, j));
end;
end;
aus welchem grund arbeitest du mit einer constante?
|