while

命令 Instruction Type
Format
while { while (
処理 Processing
} )
Commentary
条件を満たしている間ブロック内を繰り返します。 Repeat the block between the conditions are met. 条件判断は最初にチェックするため、1回も繰り返し処理が行われない場合があります。 Decision is to check the first condition, one may also repeat the process.
サンプルコード Sample code
n = 0; n = 0;
while (n<3) { while (n <3) (
n++; n + +;
outputs[0] = n; outputs [0] = n;
} )