Fortran Stop語句


如果想執行的程式停止,可以插入一個stop語句。

範例

program stop_example     
implicit none

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

當上述程式碼被編譯和執行時,它產生了以下結果:

1
2
3
4