Translation of "for-loop" in Russian
We couldn’t find this entry. Showing approximate results. Check your spelling or suggest adding this term to the dictionary.
So the topic of this section, is what's called a for-loop.
Тема этой лекции - "цикл", так называемый for-loop.
And so we get another for-loop over states, which is another factor of s.
И таким образом мы получим другой for-цикл для состояний, что является еще одним фактором s.
That's the, called the body of the for-loop.
Эти линии внутри, то, что называется "телом" for-loop.
So here in the blue box here I have a picture of a for-loop and I'll just talk about what the parts are.
Здесь в голубом окне у меня изображение for-loop, и я буду говорить о его составляющих.
The for-loop allows repetitive calculations.
An enhanced for-loop (alternative)
Combining the if-statement, with the for-loop gives us a very powerful combination.
Комбинирование "if statement" с "4-loop" дает нам очень мощную комбинацию.
The way the if-statement works is that the test is followed by a set of curly braces, just like for the for-loop.
Метод, когда "if statement" работает, тест будет сопровождаться фигурными скобками, как и для "4-floop".
We eat thinking of work, the co-worker who we need to pay attention to because he might be doing something ulterior, the "for-loop" the fails from time to time, etc etc.
Мы едим думать о работе, сотрудник, который нужно обращать внимание, потому что он может делать что-то невыраженная, "за-цикл" не время от времени, и т. д. и т. п.
A preamble for a for-loop is the for keyword optionally followed by an initializer operator, optionally followed by the while keyword and an expression (while-expression), optionally followed by the by keyword and an assignment operator (the iterator operator).
Преамбула для цикла for состоит из ключевого слова for, за которым может следовать оператор инициализации, за которым могут следовать ключевое слово while и выражение (while-выражение), за которыми могут следовать ключевое слово by с оператором присвоения (оператор итерации).
You see, if somebody has made a machine that does something once, and somebody else designs a machine that will do the same thing, but N times, for us that's a for-loop, but for the Patent Office that's an invention.
Понимаете, если кто-то сделал машину, которая делает что-то один раз, а кто-то другой конструирует машину, которая делает то же самое, но Nраз, для нас это цикл for, а для Патентного бюро это изобретение.
An enhanced for-loop (alternative)
Write three functions that compute the sum of the numbers in a given list using a for-loop, a while-loop, and recursion.
Напишите три функции, которые вычисляют сумму чисел в данном списке, используя цикл for, цикл while и рекурсию.