- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
DO 9300 MJ=1,M3(I)
RTOL(I)=RTOL(I)+TFINAL(M4(I,MJ))-- line 1
9300 SRT(I)=SRT(I)+TFINAL(M4(I,MJ))---- line 2
My problem is whether the line 2 is included in the loop are not. In other words, line 2 is executed each time or executed only when the loop terminates.pls some one help me in this issue.
thanks
RTOL(I)=RTOL(I)+TFINAL(M4(I,MJ))-- line 1
9300 SRT(I)=SRT(I)+TFINAL(M4(I,MJ))---- line 2
My problem is whether the line 2 is included in the loop are not. In other words, line 2 is executed each time or executed only when the loop terminates.pls some one help me in this issue.
thanks
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
It is included (executed each time).
I understand that you're porting/updating the (very old) code. This way of coding is treated as obsolete (as far as I can remember compiler produces a warning message for that statement) and should be replaced with
DO i=1, n
....
END DO
A.
I understand that you're porting/updating the (very old) code. This way of coding is treated as obsolete (as far as I can remember compiler produces a warning message for that statement) and should be replaced with
DO i=1, n
....
END DO
A.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thanks man.It is very helpfull to me.
thanks a lot
thanks a lot

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page