While Loop - RSS Feed for this Section
by Hiroshi on June 21st, 2008
The while keyword takes a condition in parentheses, and the code block that follows is repeated while that condition is true. If the condition is false initially, the code block will not be repeated at all. The repeating code must perform some action that affects the condition in such a way that the loop condition [...]


