[求助]请教int与trunc的问题!!
各位大师!有个程序用int就报错,用trunc就没报错。请问是什么原因。
报错的程序
y:=c*d/90000;
if y>int(y) then
N:=int(y)+1
else ----------------------〉报错的地方
N:=int(y);
test5.Text:=inttostr(N);
正常的程序
y:=c*d/90000;
if y>trunc(y) then
N:=trunc(y)+1
else
N:=trunc(y);
test5.Text:=inttostr(N);