ループ中断を表すキーワード
for または while ループの中で, コマンド break は ループを強制的に終了します.
for
while
break
k=0; while 1==1, k=k+1; if k > 100 then break end; end
Comments
Add a comment:
Please login to comment this page.