Hi,
I'm trying to output to a file - in fortran 77 - some variables I'm reading from a file (numbers, text, etc...)
I'm opening the file as:
OPEN ( UNIT = 14,
. FILE = 'INFO.txt',
. STATUS = 'UNKNOWN' )
I'm trying to output some values like:
READ (*,'(6X,I6)') VAR1
WRITE (14,100) VAR1
But it's not working...
What am I doing wrong?...
Sorry for the incovinience.
Regards,
JKepler
I'm trying to output to a file - in fortran 77 - some variables I'm reading from a file (numbers, text, etc...)
I'm opening the file as:
OPEN ( UNIT = 14,
. FILE = 'INFO.txt',
. STATUS = 'UNKNOWN' )
I'm trying to output some values like:
READ (*,'(6X,I6)') VAR1
WRITE (14,100) VAR1
But it's not working...
What am I doing wrong?...
Sorry for the incovinience.
Regards,
JKepler