Answers for "while loop vs do while c#"

C#
1

difference between while and do while in c#

Iteration statements allow the set of instructions to execute repeatedly till
the condition doesn’t turn out false.The Iteration statements in C++ and Java 
are, for loop, while loop and do while loop. These statements are commonly
called loops.Here, the main difference between a while loop and do while loop 
is that while loop check condition before iteration of the loop.On the other 
hand, the do-while loop verifies the condition after the execution of the 
statements inside the loop.Furthermore, the while loop is known as the 
entry-controlled loop.Conversely, the do while loop is called the exit 
controlled loop. In this article, we are going to discuss the differences 
between “while” loop and “do-while” loop.
Posted by: Guest on August-19-2021
-1

C# while loop

int i = 1;
while(i != 0)
{
	//This code will loop
	Console.WriteLine("Say a number");
	i = int.Parse(Console.ReadLine());
}
Posted by: Guest on October-02-2021

C# Answers by Framework

Browse Popular Code Answers by Language