+ 1
How does while loops work ?
3 Answers
+ 5
The while loop runnig as long as the condition is true.
+ 2
it does the same action over and over again while the condition is true. Every time action is finished it checks the condition,then goes for the next loop.