Thread Closed

meaning for fortran statement

 
Share Thread Thread Tools
Oct25-09, 07:36 AM   #1
 

meaning for fortran statement


Hi all,

What is the meaning of the following Fortran statement

IF ( IP - I1 ) 180, 170, 180

kindly help,
thank u,
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> King Richard III found in 'untidy lozenge-shaped grave'
>> Google Drive sports new view and scan enhancements
>> Researcher admits mistakes in stem cell study
Oct25-09, 09:37 AM   #2
 
Mentor
This is an "arithmetic IF" statement.

If IP - I1 < 0, go to statement 180.
If IP - I1 = 0, go to statement 170.
If IP - I1 > 0, go to statement 180.

You must be reading very old code.
Thread Closed
Thread Tools


Similar Threads for: meaning for fortran statement
Thread Forum Replies
Commenting out a WRITE statement in FORTRAN 95 causes changes in non-related outputs Programming & Comp Sci 3
What is the difference between personal statement and statement of purpose Career Guidance 5
Fortran 90 very basic question : else if statement Programming & Comp Sci 6
Accessing Fortran Modules within a Fortran library from Fortran Programming & Comp Sci 0