exit for

働き

for-next の繰り返しから抜けます。

文法

exit for

説明

exit for は、for-next の繰り返しを最後まで行わずに、途中で抜けます。exit for が実行されると、exit for が書かれた行以降で最も近い next の次の行に移動します。

サンプルプログラム

rem exit for
input "a";a
for i=2 to a
  if a%i=0 then
    exit for
  end if
next
if a=i then
  print a;" is prime number"
else
  print a;" is not prime number"
end if