Answers for "loop in c#"

C#
25

for loop c#

/* 	for( declartion ; question ; operation )
	the semi-colon(;) is a must but the declation, question and opertion is not
 	the declation question and operation can be swaped to your liking 
	and even removed completly */
// examples: 
for(int i = 0; i < 3; i++)  // output:
{							//	Hi
  Console.WriteLine("Hi");	//	Hi
}							//	Hi
for(int i = 0; i < 3; i++)  // output:
{							//	0
  Console.WriteLine(i);		//	1
}							//	2
// pay attention to this question it's <= instead of <
for(int i = 5; i <= 8; i++)  // output:
{							//	5
  Console.WriteLine(i);		//	6
}							//	7
							// 	8
for(int i = 3; i > 0; i--)  // output:
{							//	3
  Console.WriteLine(i);		//	2
}							//	1
for(;;) // this will result in an infinite loop
{
 	// code here
}
Posted by: Guest on April-26-2020
17

for loop c#

for (int i = 0; i < 10; i++)
{
    Console.WriteLine("Value of i: {0}", i);
}
Posted by: Guest on November-18-2019
2

for loop c#

//int i = 0  --  Making variable i
//i <=10     --  Making a condition for the loop to keep going
//i++        --  Increasing i by 1

for(int i = 0; i <= 10; i++)
  {
    Console.Write(i+1);
  }
/*
Output:
12345678910
*/
Posted by: Guest on January-04-2021
1

c# for loop

/*
The for loop is very useful in C#
syntax:
for (initialiser; condition; increment) {
	code
}
*/
// print each number between 0 and 9
for (int i = 0; i < 10; i++) {
	Console.WriteLine(i);
}

// for loops are useful when working with arrays
char[] array = { 'a', 'b', 'c' };
// print each element in the array
for (int i = 0; i < array.length; i++) {
	Console.WriteLine(array[i]);
}

/*
Often for loops start at 0 rather than 1
because they are so commonly used with arrays
or as indexes.
*/
Posted by: Guest on July-16-2021
2

c# loops

// ------------------- 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);
 }
Posted by: Guest on August-28-2020
0

loop in c#

public class MyClass
{
    void Start()
    {
      //Called when script inithilizes
    }
	void Update()
    {
      //called each fram
    }
}
//note this is in C#
Posted by: Guest on September-01-2020

C# Answers by Framework

Browse Popular Code Answers by Language