W
wonhunter
Unregistered / Unconfirmed
GUEST, unregistred user!
var i:single
begin
i:=1.0;
i:=i/10;
showmessage(floattostr(i));//这里为什么i的值为0.100000149
end;
// 用double就没问题,请各位大虾解决下!
begin
i:=1.0;
i:=i/10;
showmessage(floattostr(i));//这里为什么i的值为0.100000149
end;
// 用double就没问题,请各位大虾解决下!