Is it delphi`s bug?????
何鲁青 2007-04-03 04:18:33 procedure TForm1.Button1Click(Sender: TObject);
var
tempInt: integer;
begin
tempInt := Floor((7.2 - 7) * 10);
showmessage(IntToStr(tempInt));
end;
//run the procedure behind and tell me why?
//why the result is 1 not 2????
//Is it delphi`s bug?