Fortran - 循环语句



cycle 语句会使循环跳过其正文的其余部分,并在迭代之前立即重新测试其条件。

流程图

Cycle Statement

示例

program cycle_example     
implicit none      

   integer :: i     
   
   do i = 1, 20          
   
      if (i == 5) then 
         cycle          
      end if         
      
   print*, i      
   end do  
   
end program cycle_example

当编译并执行以上代码时,会产生以下结果 −

1
2
3
4
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
fortran_loops.htm
广告