Y
yepemig
Unregistered / Unconfirmed
GUEST, unregistred user!
var i:integer;
begin
for i:=height-1 downto height-count do begin
你的处理程式...;
...............;
end;
end;
或
var i:integer;
begin
i:=height-1;
while i>=height-count do begin
你的处理程式...;
...............;
dec(i);
end;
end;
或者
.......
begin
for i:=height-1 downto height-count do begin
你的处理程式...;
...............;
end;
end;
或
var i:integer;
begin
i:=height-1;
while i>=height-count do begin
你的处理程式...;
...............;
dec(i);
end;
end;
或者
.......