|
|
#2
缘吇弹2007-09-22 20:19
|
各位大师!
有个程序用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);
请问,我问的问题能否得到您们的解答啊~~~?

