Vertaling van "while loop" in Turks
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Hence, the do... while loop is executed at least once.
The body of do... while loop is executed once before the test expression is checked.
Do... while döngüsü test ifadesi kontrol edilmeden önce bir kez yürütülür.
Otherwise programs would do everything with a while loop.
Diğer yandan, programlar her şeyi bir while döngüsü ile yapabilirler.
A while loop continues repeating as long as certain conditions are true.
Bir while döngüsü, belirli bir koşul true olduğu sürece tekrar tekrar çalıştırılır.
A while loop is a way to repeat code until some condition is false.
while döngüsü bir koşul yanlış olana kadar kodu yinelemenin bir yoludur.
When the test expression is false, do... while loop is terminated.
Test ifadesi yanlış (sıfır olmayan) olduğunda, do... while döngüsü sonlandırılır.
Then, the do while loop will write some output, and then increment the variable $x with 1.
Daha sonra, do while döngüsü bir çıktı yazacak ve ardından $ x ile olan değişkeni artıracaktır.
The while loop executes as long as the condition (here: b < 10) remains true.
while döngüsü, verilen koşul (burada: b < 10) doğru olduğu sürece tekrarlanır.
Then the while loop is iterated until the test expression n! = 0 is evaluated to 0 (false).
Ardından while döngüsü, test ifadesi (n! = 0), 0 (false) olana kadar yinelenir.
With the internal while loop we check for each of the numbers [2... num] if it is a divisor of num and if so, we set prime to false.
İçteki while döngüsü ile [2... num] aralığındaki sayıların her biri için num tarafından bölünebildiğini kontrol ederiz ve eğer öyleyse prime değerini false olarak ayarlarız.
Then, the while loop will continue to run as long as $x is less than, or equal to 5 ($x <= 5). $x will increase by 1 each time the loop runs ($x++)
Ardından, while döngüsü, $ x değeri daha az veya 5'e eşit olduğu sürece ($ x <= 5) çalışmaya devam edecektir. $ x, döngü her çalıştığında 1 artar ($ x ++)
A while loop is a control structure that allows us to repeat a task for a certain number of times.
While döngüsü, bir görevi belirli sayıda tekrarlarlamamız için olanak sağlayan bir kontrol yapısıdır.
"This while loop calculates the sum of zero through nine," and you'd say, "including nine."
Bu while döngüsü sıfırdan dokuza kadar sayıların toplamını hesaplar ve diyebilirsiniz dokuz dahil.