Basic Pascal Tutorial/Chapter 3/WHILE..DO

From Free Pascal wiki
Revision as of 15:51, 5 January 2010 by Kees (talk | contribs)
Jump to navigationJump to search

3Db - WHILE..DO (author: Tao Yue, state: unchanged)

The pretest loop has the following format: <delphi> while BooleanExpression do

 statement;

</delphi>

The loop continues to execute until the Boolean expression becomes FALSE. In the body of the loop, you must somehow affect the Boolean expression by changing one of the variables used in it. Otherwise, an infinite loop will result: <delphi> a := 5; while a < 6 do

 writeln (a);

</delphi>

Remedy this situation by changing the variable's value: <delphi> a := 5; while a < 6 do begin

 writeln (a);
 a := a + 1

end; </delphi>

The WHILE ... DO loop is called a pretest loop because the condition is tested before the body of the loop executes. So if the condition starts out as FALSE, the body of the while loop never executes.

previous contents next