Hi,
wenn ich zum Beispiel sowas rechne, dann kommt bei mir die gleiche Fehlermeldung.
Delphi-Quellcode:
var
s: single;
begin
s:= 1111111111/ 0.0000000001;
caption:= inttostr(trunc(s));
//caption:= inttostr(round(s));
und so nicht:
Delphi-Quellcode:
var
s: single;
begin
s:= 1111111111/ 0.0000000001;
caption:= floattostr(s);
Zitat von
SirThornberry:
du lässt das ganze in der
IDE laufen und er stürzt ab ohne an einer bestimmten Stelle zu halten? Sowas hatte ich eigentlich bisher nur bei einem Stackoverflow.
Bei mir hält er dabei nirgendwo.