Im trying to write a file as follows:
however the 1 after the 3 appears in the file as a strange number 937186357
what could be the problem??
Code:
! create file IN.DAT
OPEN(UNIT=99,FILE='IN.DAT',STATUS='REPLACE')
WRITE(UNIT=99,'(/,4(/,A),/,2(I,/),f10.3,2f10.3,2(/,A))')&
'U','N','N','Y',&
3,1,uw,&
0.0,0.0,&
'N','N'
CLOSE(UNIT=99)
however the 1 after the 3 appears in the file as a strange number 937186357
what could be the problem??