在delphi中如何写for语句?(10分)

  • 主题发起人 主题发起人 chengkun
  • 开始时间 开始时间
C

chengkun

Unregistered / Unconfirmed
GUEST, unregistred user!
在c++中的
for (i = 0, j = 10; i< 10 && j > 0; i++, j--){
//..
}
在Delphi如何写?
 
j:=10
for i:=0 to j do
begin
<复合语句>
end;

Over
 
I := 0;
J := 10;
while (I < 10) and (J > 0) do begin
//... ...
Inc(I);
Dec(J);
end;
 
同意monkeyboys
 
多人接受答案了。
 
同意zswang
 
后退
顶部