While Loop Code Segment
(Redirected from While Loop)
Jump to navigation
Jump to search
A While Loop Code Segment is a looping code segment that starts with a while statement (to ...).
- Example(s):
...
- Counter-Example(s):
- See: Infinite Loop, Control Flow, Boolean Datatype.
References
2016
- (Wikipedia, 2016) ⇒ https://en.wikipedia.org/wiki/while_loop Retrieved:2016-7-25.
- In most computer programming languages, a while loop is a control flow statement that allows code to be executed repeatedly based on a given boolean condition. The while loop can be thought of as a repeating if statement.