帕斯卡 - 继续声明


Pascal 中的continue语句工作方式有点类似于break语句。然而, Continue并不强制终止,而是强制进行循环的下一次迭代,并跳过其间的任何代码。

对于for-do循环,continue语句会导致循环的条件测试和增量部分执行。对于while-doRepeat...until循环,Continue语句会导致程序控制传递给条件测试。

句法

Pascal 中的 continue 语句的语法如下 -

continue;

流程图

帕斯卡继续语句

例子

program exContinue; 
var
   a: integer;

begin
   a := 10;
   (* repeat until loop execution *)
   repeat
      if( a = 15) then
      
      begin
         (* skip the iteration *)
         a := a + 1;
         continue;
      end;
      
      writeln('value of a: ', a);
      a := a+1;
   until ( a = 20 );
end.

当上面的代码被编译并执行时,它会产生以下结果 -

value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 16
value of a: 17
value of a: 18
value of a: 19
pascal_loops.htm