C# For Loop
The C# for loop is used to iterate a part of the program several times. If the number of iteration is fixed, it is recommended to use for loop than while or do-while loops.
The C# for loop is same as C/C++. We can initialize variable, check condition and increment/decrement value.
Syntax:
- using System;
- public class ForExample
- {
- public static void Main(string[] args)
- {
- for(int i=1;i<=10;i++){
- Console.WriteLine(i);
- }
- }
- }
Flowchart:
C# Nested For Loop
In C#, we can use for loop inside another for loop, it is known as nested for loop. The inner loop is executed fully when outer loop is executed one time. So if outer loop and inner loop are executed 3 times, inner loop will be executed 3 times for each outer loop i.e. total 9 times.
Let's see a simple example of nested for loop in C#.
- using System;
- public class ForExample
- {
- public static void Main(string[] args)
- {
- for(int i=1;i<=3;i++){
- for(int j=1;j<=3;j++){
- Console.WriteLine(i+" "+j);
- }
- }
- }
- }
Comments
Post a Comment