Answers for "nested for loops"

C
5

nested for 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);
    }
}
Posted by: Guest on February-20-2020
2

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;
}
Posted by: Guest on April-21-2021
1

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} nn", outer,
                               inner);
                }
            } MessageBox.Show(result);
        }
Posted by: Guest on May-13-2021
0

arrays with for loops

Account[] accounts;

// 1. allocate the array (initially all the pointers are null)
accounts = new Account[100];	

// 2. allocate 100 Account objects, and store their pointers in the array
for (int i=0; i<accounts.length; i++) {
  accounts[i] = new Account();
}

// 3. call a method on one of the accounts in the array
account[0].deposit(100);
Posted by: Guest on May-15-2020

Code answers related to "C"

Browse Popular Code Answers by Language