91 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| title: For Loop
 | |
| localeTitle: En bucle
 | |
| ---
 | |
| Un For Loop es una declaración repetitiva que se usa para verificar alguna condición y luego, según la condición, un bloque de código se ejecuta repetidamente hasta que se cumple la condición especificada.
 | |
| 
 | |
| El bucle for se distingue de otras declaraciones de bucle a través de un contador de bucle explícito o variable de bucle que permite al cuerpo del bucle conocer la secuencia exacta de cada iteración.
 | |
| 
 | |
| Por lo tanto, un bucle for es una estructura de control de repetición que le permite escribir de manera eficiente un bucle que necesita ejecutarse un número específico de veces.
 | |
| 
 | |
| ## Sintaxis
 | |
| ```
 | |
| for ( init; condition; increment ) { 
 | |
|    statement(s); 
 | |
|  } 
 | |
| ```
 | |
| 
 | |
| Se permite colocar el incremento en el bucle for como en un bucle while. Significar una sintaxis como esta también puede funcionar.
 | |
| ```
 | |
| for ( init; condition;) { 
 | |
|    statement(s); 
 | |
|    increment; 
 | |
|  } 
 | |
| ```
 | |
| 
 | |
| ### en eso
 | |
| 
 | |
| Este paso le permite declarar e inicializar cualquier variable de control de bucle. Este paso se realiza primero y solo una vez.
 | |
| 
 | |
| ### condición
 | |
| 
 | |
| A continuación se evalúa la condición. Si se mantiene verdadero, se ejecuta el cuerpo del bucle. Si es falso, el cuerpo del bucle no se ejecuta y el flujo de control salta a la siguiente iteración (repetición de un proceso).
 | |
| 
 | |
| ### actualizar
 | |
| 
 | |
| La instrucción de actualización se usa para alterar la variable del bucle mediante operaciones simples como la suma, resta, multiplicación o división. La instrucción de actualización se ejecuta después de la ejecución del cuerpo del bucle.
 | |
| 
 | |
| ## IMPLEMENTACIÓN:
 | |
| 
 | |
| ```C++
 | |
| #include <iostream> 
 | |
|  using namespace std; // Here we use the scope resolution operator to define the scope of the standar functions as std:: 
 | |
|  
 | |
|  int main () { 
 | |
|    // for loop execution 
 | |
|    for( int a = 10; a < 20; a = a + 1 ) { // The loop will run till the value of a is less than 20 
 | |
|       cout << "value of a: " << a << endl; 
 | |
|    } 
 | |
|  
 | |
|    return 0; 
 | |
|  }``` 
 | |
|  
 | |
|  Output: 
 | |
|  value of a: 10 
 | |
|  value of a: 11 
 | |
|  value of a: 12 
 | |
|  value of a: 13 
 | |
|  value of a: 14 
 | |
|  value of a: 15 
 | |
|  value of a: 16 
 | |
|  value of a: 17 
 | |
|  value of a: 18 
 | |
|  value of a: 19 
 | |
|  
 | |
|  ##Single lined loop 
 | |
|  The body of the for loop need not be enclosed in braces if the loop iterates over only one satatement. 
 | |
|  ##Example 
 | |
| ```
 | |
| 
 | |
| c ++ #incluir utilizando namespace std;
 | |
| 
 | |
| int main () { // Línea única para bucle para (int a = 10; a <20; a = a + 1) cout << "valor de a:" << a << endl;
 | |
| 
 | |
| devuelve 0; } \`\` \`
 | |
| 
 | |
| Esto generaría la misma salida que el programa anterior. es decir Salida: valor de a: 10 valor de a: 11 valor de a: 12 valor de a: 13 valor de a: 14 valor de a: 15 valor de a: 16 valor de a: 17 valor de a: 18 valor de a: 19
 | |
| ```
 | |
| ## Explanation 
 | |
|  Here's the initialization condition is first set to a=10. The loop first checks for this condition. It then checks for the condition expression ie a<20 which holds true as 10<20(for the first case). Now the body of the loop is executed and we get the output "Value of a: 10". Then the update expression is executed which adds the number 1 to 'a' and the value of 'a' gets updated to 11 and the same steps are followed (as above) until the value of v reaches less than 20 ie 19. 
 | |
|  
 | |
|  # Range-based for-loop 
 | |
|  C++ also has what we call range-based for loops which iterates through all the elements of a container(eg array). 
 | |
|  
 | |
|  ## Syntax 
 | |
| ```
 | |
| 
 | |
| para (elemento: contenedor) declaración (es); }
 | |
| 
 | |
| int \[5\] array = {1, 2, 3, 4, 5} para (int i: array) cout << i << endl; }
 | |
| 
 | |
| Salida: 1 2 3 4 5 \`\` \` |