You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

nested loop is a (inner) loop that appears in the loop body of another (outer) loop. The inner or outer loop can be any type: whiledo while, or for. For example, the inner loop can be a while loop while an outer loop can be a for loop. Of course, they can be the same kind of loops too.

Both, Java and Python allow to use one loop inside another loop. Following section shows few examples to illustrate the concept.

Example

The following program uses a nested for loop to find the prime numbers from 2 to 100:


Java nested loops
// prime numbers from 2 to 100
int i = 2;
while(i < 100){
	int j = 2;
    while(j <= (i / j)){
        if (i % j == 0) break;
        j = j + 1;// or j++;
    }   
    if (j > i/j) System.out.println(i + " is prime");
    i = i + 1; // or i++;    
}
System.out.println("Good bye!");
Python nested loops
# prime numbers from 2 to 100

i = 2
while(i < 100):
   j = 2
   while(j <= (i/j)):
      if not(i%j): break
      j = j + 1
   if (j > i/j) : print i, " is prime"
   i = i + 1

print "Good bye!"


You can often use for-loops to make code easier to read. The following code with nested for-loops prints...


Java nested loops
 
Python nested loops
# Print the below statement 3 times
for number in range(3) :  
    print("-------------------------------------------")
    print("I am outer loop iteration "+str(number))
    # Inner loop
    for another_number in range(5):  
        print("****************************")
        print("I am inner loop iteration "+str(another_number))

 

You will find out that the control enters the first for loop and the value of the variable number is initialized as 0. The first print statement is printed, and then control enters the second for loop, where the value of the variable another_number is initialized to 0. The first print statement in the second for loop is printed once.

 

Now, the control returns to the inner for loop once again and the value of another_number is again initialized to the next integer followed by printing the statement inside the print() function.

 

The aforementioned process continues until the control has traversed through the end of the range() function, which is 5 in this case, and then the control returns back to the outermost loop, initializes the variable number to the next integer, prints the statement inside the print() function, visits the inner loop and then repeats all of the above steps until the range() function is traversed.

 

This journey of the control traveling from the outermost loop, traversing of the inner loop and then back again to the outer for loop continues until the control has covered the entire range, which is 3 times in your case.


  • No labels