Difference between revisions of "Basic Pascal Tutorial/Chapter 3/WHILE..DO"

From Lazarus wiki
Jump to navigationJump to search
m
Line 1: Line 1:
 +
== While ... DO loops ==
 
{{WHILE..DO}}
 
{{WHILE..DO}}
  
Line 27: Line 28:
  
 
The <tt>WHILE ... DO</tt> 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 <tt>FALSE</tt>, the body of the <tt>while</tt> loop never executes.
 
The <tt>WHILE ... DO</tt> 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 <tt>FALSE</tt>, the body of the <tt>while</tt> loop never executes.
 +
 +
== See also ==
 +
[[FOR..DO|FOR ...DO loops]]
 +
 +
[[Until|Repeat... Until loops]]
  
 
{|style=color-backgroud="white" cellspacing="20"
 
{|style=color-backgroud="white" cellspacing="20"

Revision as of 08:42, 20 October 2014

While ... DO loops

български (bg) English (en) français (fr) 日本語 (ja) 中文(中国大陆)‎ (zh_CN)

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

The pretest loop has the following format:

while BooleanExpression do
  statement;

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:

a := 5;
while a < 6 do
  writeln (a);

Remedy this situation by changing the variable's value:

a := 5;
while a < 6 do
begin
  writeln (a);
  a := a + 1
end;

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.

See also

FOR ...DO loops

Repeat... Until loops

previous contents next