Definitions for "While Loop" Add To Word List
Login or Register  | Word Lists | Search History

A repetition structure used to repeat a group of statements depending on a condition.
Helpful?           0
a block of code that is executed repeatedly until some condition is met
Helpful?           0
a construction of the form while condition , program , end Here condition is a MATLAB functionm, as with the branching construction
Helpful?           0
a good choice here since the ambient temperature may be at the desired level before the compressor part of the program is executed
Helpful?           0
a loop used to run a block of code while a condition is true
Helpful?           0
a much more general loop than a for loop
Helpful?           0
a simple loop that keeps looping while something is true
Helpful?           0
a type of statement
Helpful?           0
A structure in a computer program that allows a sequence of instructions to be repeated while some condition remains true. See also Repeat Loop, Until Loop.
Helpful?           0
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.
Helpful?           0