memrootじしょ
英和翻訳
loop condition
neoclassical architecture
perform a task
prevail over adversity
Target value
finite resources
Scheming
remote monitoring
manual action
impressive performance
loop condition
[ˈluːp kənˈdɪʃən]
ループ コンディション
1.
プログラムのループ(繰り返し処理)が継続するか終了するかを決定する論理式または評価。
プログラミングにおいて、`for`ループや`while`ループなどの繰り返し処理が次のステップに進むべきか、それとも終了すべきかを判断するための条件を指します。この条件が真である間はループが繰り返され、偽になった時点でループは終了します。
The
while
loop
continues
as
long
as
the
loop
condition
remains
true.
(whileループは、ループ条件が真である限り継続します。)
The while loop
whileループは
continues
継続します
as long as
~である限り
the loop condition
ループ条件が
remains true
真である
You
must
define
a
clear
loop
condition
to
prevent
an
infinite
loop.
(無限ループを防ぐためには、明確なループ条件を定義する必要があります。)
You
あなたは
must define
定義しなければなりません
a clear loop condition
明確なループ条件を
to prevent
防ぐために
an infinite loop
無限ループを
If
the
loop
condition
is
met,
the
program
will
exit
the
loop.
(ループ条件が満たされれば、プログラムはループを終了します。)
If
もし
the loop condition
ループ条件が
is met
満たされれば
the program
プログラムは
will exit
終了します
the loop
ループを
Check
the
loop
condition
carefully
before
running
the
code.
(コードを実行する前に、ループ条件を注意深く確認してください。)
Check
確認してください
the loop condition
ループ条件を
carefully
注意深く
before running
実行する前に
the code
コードを
関連
iteration
exit condition
while loop
for loop
do-while loop
control flow
conditional statement
boolean expression
termination condition