Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はいくつかのレガシーコードを書き直していて、これに出くわしました:
DO 4 I=1,N ... DO 4 J=1,N ... 4 CONTINUE
CONTINUEこれら 2 つのループには 1 つしかないようです。このJavaコードと同等ですか?
CONTINUE
for (int i=0; i<n; i++) { ... for (int j=0; j<n; j++) { ... } }