0
Using Do While Loops
Why is there a key difference between a while loop and a do while loop?
2 odpowiedzi
+ 2
In a do...while loop...any statements in it will be evaluated at least once.
+ 1
Also because in while-loop we check the loop condition first, contrary to the do-while loop where we check loop condition later.