I am rewriting legacy code and stumbled upon this:
DO 4 I=1,N
...
DO 4 J=1,N
...
4 CONTINUE
There seems to be only one for these two cycles CONTINUE. Is this equivalent to this java code?
for (int i=0; i<n; i++) {
...
for (int j=0; j<n; j++) {
...
}
}
source
share