c# loop do while code example
Example: c# while loop
while(condition)
{
statement(s);
}
_______________EX.___________________
int a = 0;
while (a < 10)
{
Console.WriteLine(a); //output>> 0 .. 1 .. 2 ........ 8 .. 9
a++;
}
while(condition)
{
statement(s);
}
_______________EX.___________________
int a = 0;
while (a < 10)
{
Console.WriteLine(a); //output>> 0 .. 1 .. 2 ........ 8 .. 9
a++;
}