voikya
0
Q:

how do loops on C#

for (int i = 0; i < 10; i++)
{
    Console.WriteLine("Value of i: {0}", i);
}
18
// C# program to illustrate while loop 
using System; 
  
class whileLoopDemo 
{ 
    public static void Main() 
    { 
        int x = 1; 
   
        // Exit when x becomes greater than 4 
        while (x <= 4) 
        { 
            Console.WriteLine("Hello World"); 
            // Increment the value of x for 
            // next iteration 
            x++; 
        } 
    } 
} 
1

// ------------------- Syntax of Loops ---------------------- //

// ----- FOR LOOP ----- //
// for (start value; condition; increment)

 for (int i = 0; i < 10; i++) {
  
    Console.WriteLine(i);
 }


// ----- WHILE LOOP ----- //
// start_value = 0; while (condition) { increment++ }

 int counter = 0;

 while (counter < 5) {
    
   Console.WriteLine(counter);
   counter++;
 }


// ----- DO WHILE LOOP ----- //
// start_value = 0; do { increment++ } while (condition);

 int counter = 0;

 do
 {
   Console.WriteLine(counter);
   counter++;
   
  } while (counter < 5);


// ----- FOREACH LOOP ----- //
// for (item in list/array)

 string[] myArray = { "grape", "orange", "pink", "blue" };

 foreach (string item in myArray) {
    
   Console.WriteLine(item);
 }
 
0

New to Communities?

Join the community