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.
En esta sección, escribiremos la definición usando un bucle while.
In this section, we will write the definition using a while loop.
De otra forma, los programas lo harían todo con un bucle while.
Otherwise programs would do everything with a while loop.
El segundo bucle while es para mover el punto hacia adelante.
The second while loop is for moving point forward.
Y el siguiente bucle while interno hace exactamente eso.
And the next internal while loop does exactly that.
El diseño utilizando un bucle while es rutinario.
The design using a while loop is routine.
Si quieres que se realicen reintentos, ejecuta tip en una bucle while.
If you want to keep retrying, run tip in a while loop.
En esta función, usaremos tanto un bucle while como una llamada recursiva.
In this function, we will use both a while loop and a recursive call.
El bucle while continuará ejecutándose mientras la condición en el paréntesis sea true.
A while loop will continue to execute as long as the condition in the parenthesis is logically true.
En resumen, un bucle while escrito apropiadamente constará de tres partes
In brief, a properly written while loop will consist of three parts
Nosotros usamos un bucle while para esto.
We use a while loop for this.