Do-While-Løkke
The do-while loop is similar to the while loop however it executes the specified code block first and then checks the condition hence it always executes the code block at least once even if the condition is false.
Following is the syntax of the do-while loop:
do {
// code to be executed
} while (condition);
Let's consider the practical example:
main.cs
1234567891011121314using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { do { Console.WriteLine("Hello World"); } while(1 < 0); } } }
The above code outputs "Hello World" even though the condition 1 < 0 is false. This will become more clear by looking at the flow diagram of the do-while loop:
Tak for dine kommentarer!
Spørg AI
Spørg AI
Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat
Can you explain why the code block executes at least once in a do-while loop?
Can you show a practical example of a do-while loop in JavaScript?
Can you describe the flow diagram of the do-while loop?
Awesome!
Completion rate improved to 1.59
Do-While-Løkke
Stryg for at vise menuen
The do-while loop is similar to the while loop however it executes the specified code block first and then checks the condition hence it always executes the code block at least once even if the condition is false.
Following is the syntax of the do-while loop:
do {
// code to be executed
} while (condition);
Let's consider the practical example:
main.cs
1234567891011121314using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { do { Console.WriteLine("Hello World"); } while(1 < 0); } } }
The above code outputs "Hello World" even though the condition 1 < 0 is false. This will become more clear by looking at the flow diagram of the do-while loop:
Tak for dine kommentarer!