forums.silverfrost.com Forum Index forums.silverfrost.com
Welcome to the Silverfrost forums
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

if (my_iostat/=0) then

 
Post new topic   Reply to topic    forums.silverfrost.com Forum Index -> General
View previous topic :: View next topic  
Author Message
Zach



Joined: 13 Mar 2023
Posts: 85
Location: Groningen, Netherlands

PostPosted: Fri Mar 17, 2023 9:15 pm    Post subject: if (my_iostat/=0) then Reply with quote

I know it is a futile question, but still,
I am a rooky:

Why the forward slash? I cannot find any answer on the Net.

Nevertheless please tell me.

Zach.
Back to top
View user's profile Send private message Send e-mail
Kenneth_Smith



Joined: 18 May 2012
Posts: 697
Location: Hamilton, Lanarkshire, Scotland.

PostPosted: Fri Mar 17, 2023 11:21 pm    Post subject: Reply with quote

You should be able to work it all out from this short program.
Code:

program t
implicit none
integer i, j
i = 1
j = 0
!        Six relational operators in Fortran
!        Prints T for true, F for false
print*, (i == j)          ! Test i equal to j
print*, (i /= j)          ! Test i not equal to j
print*, (i >  j)          ! Test i greater than j
print*, (i <  j)          ! Test i less than j
print*, (i >= j)          ! Test i greater than or equal to j
print*, (i <= j)          ! Test i less than or equal to j
print*
!       Equivalent older style (but still valid)
print*, (i .eq. j)        ! Test i equal to j
print*, (i .ne. j)        ! Test i not equal to j
print*, (i .gt. j)        ! Test i greater and j
print*, (i .lt. j)        ! Test i less than j
print*, (i .ge. j)        ! Test i greater than or equal to j
print*, (i .le. j)        ! Test i less than or equal to j
end program t
Back to top
View user's profile Send private message Visit poster's website
Zach



Joined: 13 Mar 2023
Posts: 85
Location: Groningen, Netherlands

PostPosted: Sat Mar 18, 2023 5:43 pm    Post subject: Reply with quote

Thank you Kenneth.
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    forums.silverfrost.com Forum Index -> General All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group