Nested Loops code example

Example 1: nested loops javascript

// Basic Javascript Nested Loop / 2D Array

for (var x = 0; x < 10; x++) {
	for (var y = 0; y < 10; y++) {
    	console.log("x: " + x + ", y: " + y);
    }
}

Example 2: nested for loop in java

// outer loop
for (int i = 1; i <= 5; ++i) {
  // codes

  // inner loop
  for(int j = 1; j <=2; ++j) {
    // codes
  }
..
}

Example 3: nested loop

#include<stdio.h>

int main()
{
    int sum = 0, i, j;

    for(i = 0; i < 3; i++)
    {
        sum += i;
        for(j = 0; j < 3; j++)
        {
            sum += j;
            if(((i + j) % 2) == 1)
                break;
        }
    }

    printf("%d",sum);

    return 0;
}

Example 4: nested loop

int inner;
 string result = " "; 
 for (int outer = 0; outer < 3; outer++)
            {
                for (inner = 10; inner > 5; inner--)
                {
                    result += string.Format("Outer: {0} \tInner: {1} \n\n", outer,
                               inner);
                }
            } MessageBox.Show(result);
        }