do {
statement(s);
} while( condition );
_______________EX.___________________
int i = 0;
do
{
Console.WriteLine(i);
i++;
}
while (i < 5);
============OUTPUT======================
0
1
2
3
4
# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A
do {
Console.WriteLine("Emter the magic word");
magic_string = Console.ReadLine();
if(magic_string != "please");{
Console.WriteLine("{0} is not the corret magic word try again:- ",magic_string );
}
}while ( magic_string != "please");
do
{
//Code here (will run at least once)
} while (true); //Condition to test for here
int repeats = 0;
bool while = true; //creates a bool variable with the true value
while (while = true) //repeats the code in the curly brackets as long
{ //as the value in the round brackets remains true
repeats++; //increase the value inside repeats
}
int i = 1;
while(i != 0)
{
//This code will loop
Console.WriteLine("Say a number");
i = int.Parse(Console.ReadLine());
}
int i = 0; // initialization
while (i < 10) // condition
{
Console.WriteLine("i = {0}", i);
i++; // increment
}
while(condition)
{
statement(s);
}
_______________EX.___________________
int a = 0;
while (a < 10)
{
Console.WriteLine(a); //output>> 0 .. 1 .. 2 ........ 8 .. 9
a++;
}
int sugar = 0;
int salt = 0;
do {
bottle1.choose();
bottle2.choose();
if ((bottle1 == 'Sugar') && (bottle2 == 'Sugar'))
{
Console.Write("Sugar");
sugar++;
}
else if ((bottle1 == 'Salt') && (bottle1 == 'Salt'))
{
salt++;
Console.Write("Salt");
}
else
{
Console.Write("None");
}
} while ((salt < 10) || (sugar < 10));
do
{
//code block
} while(condition);
int index = 1;
while (index <= 5)
{
Console.WriteLine(index);
index++;
}
Console.ReadLine();
public bool cando = true;
while (cando) // will run if cando stays true
{
//code
break; //here we break the while loop. it will not run anymore(we do this bc there is no really different option to break the cando bool)
}
int i = 0;
while (i < 20)
{
Console.WriteLine(i);
i++;
}