主题:求助
代码:
do 214 j=3,ny-2
if(j.eq.5) goto 214
do 214 k=1,nz
write(2,105) (c(i,j,k),i=1,nx)
214 continue
编译出错:Error: A branch to a do-term-shared-stmt has occurred from outside the range of the corresponding inner-shared-do-construct. [214]
咋回事?
do 214 j=3,ny-2
if(j.eq.5) goto 214
do 214 k=1,nz
write(2,105) (c(i,j,k),i=1,nx)
214 continue
编译出错:Error: A branch to a do-term-shared-stmt has occurred from outside the range of the corresponding inner-shared-do-construct. [214]
咋回事?