Bucle anidado significa una sentencia de bucle dentro de otra sentencia de bucle. Es por eso que los bucles anidados también se denominan » bucle dentro del bucle «.
Sintaxis para el bucle For anidado:
for ( initialization; condition; increment ) { for ( initialization; condition; increment ) { // statement of inside loop } // statement of outer loop }
Sintaxis para el ciclo while anidado:
while(condition) { while(condition) { // statement of inside loop } // statement of outer loop }
Sintaxis del bucle Do-While anidado:
do{ do{ // statement of inside loop }while(condition); // statement of outer loop }while(condition);
Nota: No existe una regla que indique que un bucle debe estar anidado dentro de su propio tipo. De hecho, puede haber cualquier tipo de bucle anidado dentro de cualquier tipo y en cualquier nivel.
Sintaxis:
do{ while(condition) { for ( initialization; condition; increment ) { // statement of inside for loop } // statement of inside while loop } // statement of outer do-while loop }while(condition);
A continuación se muestran algunos ejemplos para demostrar el uso de bucles anidados:
Ejemplo 1: el programa siguiente utiliza un bucle for anidado para imprimir una array 2D de 3×3.
// C++ program that uses nested for loop // to print a 2D matrix #include <bits/stdc++.h> using namespace std; #define ROW 3 #define COL 3 // Driver program int main() { int i, j; // Declare the matrix int matrix[ROW][COL] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } }; cout << "Given matrix is \n"; // Print the matrix using nested loops for (i = 0; i < ROW; i++) { for (j = 0; j < COL; j++) cout << matrix[i][j]; cout << "\n"; } return 0; }
Given matrix is 123 456 789
Ejemplo 2: El siguiente programa usa un bucle for anidado para imprimir todos los factores primos de un número.
// C++ Program to print all prime factors // of a number using nested loop #include <bits/stdc++.h> using namespace std; // A function to print all prime factors of a given number n void primeFactors(int n) { // Print the number of 2s that divide n while (n % 2 == 0) { cout << 2; n = n / 2; } // n must be odd at this point. So we can skip // one element (Note i = i +2) for (int i = 3; i <= sqrt(n); i = i + 2) { // While i divides n, print i and divide n while (n % i == 0) { cout << i; n = n / i; } } // This condition is to handle the case when n // is a prime number greater than 2 if (n > 2) cout << n; } /* Driver program to test above function */ int main() { int n = 315; primeFactors(n); return 0; }
3357