Hi,
I'm trying to read in from a text file the following sequence
100 A B -5585577.906775479
I've tried reading it using the following format:
10 FORMAT(I3,1X,A1,1X,A1,1X,F10.10)
and writing it using the following command:
READ(2,10) A,B,C,D
WRITE(*,10) A,B,C,D
However, upon output, it gives the following:
100 A B **********
Why is it doing this? Thank you
I'm trying to read in from a text file the following sequence
100 A B -5585577.906775479
I've tried reading it using the following format:
10 FORMAT(I3,1X,A1,1X,A1,1X,F10.10)
and writing it using the following command:
READ(2,10) A,B,C,D
WRITE(*,10) A,B,C,D
However, upon output, it gives the following:
100 A B **********
Why is it doing this? Thank you