Answers for "how nested for loop works"

C
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

What is the purpose of a nested loop?

What is the purpose of a nested loop? 

Nested loops are useful when for each pass through the outer loop, you need to repeat some action on the data in the outer loop. For example, you read a file line by line and for each line you must count how many times the word “the” is found.
Posted by: Guest on November-19-2021

Code answers related to "C"

Browse Popular Code Answers by Language