T
tt123tt
Unregistered / Unconfirmed
GUEST, unregistred user!
var
aa,bb,cc:float;
begin
aa:='26';
bb:='25.6';
cc:=floattostr(strtoflaot(aa)-strtoflaot(bb));
end;
cc得到的结果是0.3300000000000001.
问题:
1) cc为什么得不到0.4?
2) cc怎样改才能得到正确值。
aa,bb,cc:float;
begin
aa:='26';
bb:='25.6';
cc:=floattostr(strtoflaot(aa)-strtoflaot(bb));
end;
cc得到的结果是0.3300000000000001.
问题:
1) cc为什么得不到0.4?
2) cc怎样改才能得到正确值。