W
wql
Unregistered / Unconfirmed
GUEST, unregistred user!
哎!多简单的问题!
function get0real(no:real):real;
var
s: string;
c: word;
begin
result:=no;
s:=floattostr(no);
c:=pos('.',s);
if c=0 then exit;
if s[c+1]<>'0' then
result:=no+1;
end;
function get0real(no:real):real;
var
s: string;
c: word;
begin
result:=no;
s:=floattostr(no);
c:=pos('.',s);
if c=0 then exit;
if s[c+1]<>'0' then
result:=no+1;
end;