var
tsingle:single;
tarray:array[1..10]of single;
begin
tsingle:=1.5;
//for tsingle:=1 to 10
repeat
tarray[tsingle]:=tsingle*2; //这句编译错误
tsingle:=tsingle+1;
until tsingle>9;
label1.Caption :=floattostr(tarray[8]);
end;
怎么能用一个函数解决这个单精度转化为数组能用的整形?
FloatToInt 根本没这个函数。
Integer(x)在delphi中不能用。
我是问 :怎么改?
宝慕林4294392
慕雪6442864