continue
種類
命令
書式
continue
解説
一番内側のループ/ブロックの先頭に戻ります。
サンプルコード
for (i=0; i<5; i++)
{
if (i == 2) continue;
outpts[0] = i;
}
実際のスクリプトを
ダウンロード