循环(10分)

  • 主题发起人 主题发起人 小城月光
  • 开始时间 开始时间

小城月光

Unregistered / Unconfirmed
GUEST, unregistred user!
各位大虾:
我的程序:
while 循环
for循环
if.. then continue
要求continue后回到FOR 循环结果回到while循环如何解决?急!!!!!
谢谢!
 
to完颜康:
你可以举个例子吗?我把continue改成break还是不行
请多多指点!
 
break不就跳出for循环,继续while循环了吗
 
while begin
for begin
if.. then continue;
end;
end;
//最好用begin..end写循环体。
 
procedure TForm1.Button1Click(Sender: TObject);
var
i:integer;
begin
while true do begin
for i:=0 to 5 do begin
Showmessage(inttostr(i));
if i<5 then begin
Showmessage('InFor');
Continue;//其实这句可写也可不写,遇到end自然会重新开始For循环。
end;
end;
ShowMessage('EndWhile');
Break;
end;
end;
 
接受答案了.
 

Similar threads

回复
0
查看
1K
不得闲
S
回复
0
查看
850
SUNSTONE的Delphi笔记
S
S
回复
0
查看
782
SUNSTONE的Delphi笔记
S
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
916
SUNSTONE的Delphi笔记
S
后退
顶部