I am writing codes in Fortran 95, to read a number of files looking like 1.dat, 2.dat, ......, 9999.dat. I have a code that reads 0001.dat, 0002.dat, .......... 9999.dat. It looks like
character*12, fn
..
DO i=1,n
write(fn,*)i
open(1,file=fn)
do j=1,5
read(1,*)x(i,j),y(i,j),z(i,j)
end do
10 format(i4.4,'.dat')
May you suggest me how can I make it possible to read the files that I have please? Thanks.u
What if you change your format to
I tried this for instance
And I had no leading zeros in my file names.
Is this hat you were looking for ?
Update
I see...
Then the format should be
the '0' means left justified.
I tested it with the following pgm
And that worked for me.
Update 2
Worked for me.
Output (on Ubuntu 10.10).