Examples with "while bucles" and their translation in Engels
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.
Python también soporta mientras y do... while bucles.
Andere resultaten
El diagrama de flujo de un do-while bucle sería como sigue
Sintaxis La sintaxis para do-while bucle en JavaScript es el siguiente
Si se declara dentro de un for, while bucle o interruptor, su ámbito de aplicación se inicia en la declaración y termina en el respectivo extremo comunicado.
If it is declared within a for, while, loop or switch, its scope starts at the declaration and ends at the respective end statement.
Si usted va a escribir el ejemplo anterior utilizando do... while bucle, a continuación Hola, mundo producirá el mismo resultado
If you will write above example using do... while loop, then Hello, World will produce the same result
Un bucle while es una estructura de control común en muchos lenguajes.
A while loop is a common control structure in many languages.
Algunas veces estos son mas rápidos de escribir que el bucle while equivalente.
Sometimes these are quicker to write than the equivalent while loop.
Esto es, este bucle while se ejecuta un número aleatorio de veces.
That is, this while loop is executed a random numbers of times.
Pero no hay una condición para detener el bucle while.
En esta sección, escribiremos la definición usando un bucle while.
In this section, we will write the definition using a while loop.
Un bucle do-while verifica su condición después de completar el bloque de código cada vez.
A do-while loop checks its condition after completing the code block each time.
Un bucle do-while ejecutará el bloque al menos una vez antes de verificar la condición.
A do-while loop will execute the block at least once before checking the condition.
El bucle do-while comienza ejecutando el código antes de verificar si debe repetirse.
The do-while loop starts by executing the code before verifying if it should repeat.