我在 Fortran 77 代码(gfortran 编译器)中遇到了一个奇怪的行为,以下行完美运行(跳转到标签 202 for iprobe=202):
if( iprob .eq. 202 ) goto 202
!...some commands...
202 continue
但是,它的对应物:
GO TO ( 202 ), iprob
!...some commands...
202 continue
没有。该程序仅在 iprobe=202 时运行。
也许有人对这个问题有想法?