The while loop: repeat while...
A while loop tests a condition. If it is true, the body runs and execution jumps back to test again. This continues until the condition becomes False.
A while loop tests a condition. If it is true, the body runs and execution jumps back to test again. This continues until the condition becomes False.