Translation of "while loop" in Russian
We couldn’t find this entry. Showing approximate results. Check your spelling or suggest adding this term to the dictionary.
So that's a syntax for a while loop.
Так что вот синтаксис цикла while.
Something must change the tested variable, or the while loop will never exit.
Что-то должно изменять значение проверяемой переменной, иначе выход из цикла while никогда не будет достигнут.
So here's an example of while loop.
И вот пример while-цикла.
The syntax for the while loop is this We have the key word "while", followed by a test expression followed by a colon, and then inside we have a "block" and the "block" is a sequence of instructions
Синтаксис while-цикла таков: сначала идет ключевое слово while, за которым следует <проверяемое выражение>, затем двоеточие, и вложенный <блок>, который представляет собой последовательность инструкций.
Another such error can occur if a do-while loop is used in place of a while loop (or vice versa.)
Подобная же ошибка может возникнуть, если цикл do-while используется вместо цикла while (или наоборот).
But no-one has ever managed to create music that will inspire you to find the line with the missing semi-colon, or to make the correct choice between using a for loop or a while loop.
Но никому еще не удавалось создать музыку, которая вдохновит вас найти строку с отсутствующей точкой с запятой или сделать правильный выбор между использованием цикла for или цикла while.
And the condition for the while loop was basically while z is greater than or equal to 3n, it's less than or equal to ten.
И условие для цикла while которое, по сути, говорит "пока z больше или равно трем и меньше или равно десяти".
Ten is not less than ten, so that will be "False" and we are done with the while loop
10 не меньше 10, поэтому условие ложно, и мы выходим из while-цикла.
In the following example, program flow returns to the top of the While loop if the $ctr variable is equal to 5.
В следующем примере программный поток возвращается в начало цикла While, если значение переменной $ctr равняется 5.
Unlike the related While loop, the script block in a Do loop always runs at least once.
В отличие от цикла While, блок скрипта в цикле Do всегда выполняется по крайней мере один раз.
A Do-While loop is a variety of the While loop.
Цикл Do-While представляет собой разновидность цикла While.
Wrap this logic in a while loop to attack all enemies.
In do... while loop, condition is checked at the end of loop.
В цикле же do... while условие проверяется при выходе из цикла.