for (int i = 0; i < 10; i++)
{
Console.WriteLine("Value of i: {0}", i);
}
//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
*/
for (int i = 0; i < 5; i++)
{
Console.WriteLine(i);
}
______________OUTPUT____________
0
1
2
3
4
for (int i = 0; i < 5; i++) {
// code goes here
}
// this loop repeats 5 times
for(i = 2; i < 100; i*=2)
{
Console.Write(i + " ");
}
Console.Readkey();
{
int[] luckyNumbers = { 4, 8, 15, 16, 23, 42 };
for (int i = 0; i < luckyNumbers.Length; i++)
Console.WriteLine(luckyNumbers[i]);
}
Console.ReadLine();
for(int i = 0; i<5; i++)
{
//commands
}
for(int i=0;i<5;i++)
{
Console.WriteLine(i);
}
for (int i = 0; i < 5; i++)
{
//looping stuff
}
for(int i = 0, i < p, i++){}
// 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("GeeksforGeeks");
// Increment the value of x for
// next iteration
x++;
}
}
}
using System;
namespace Loops {
class Program {
static void Main(string[] args) {
for (; ; ) {
Console.WriteLine("Hey! I am Trapped");
}
}
}
}