For the following attempt at output: WRITE (6,2000)I,J,A,B,C,D,E 2000 FORMAT(1X,2I5,(3E12.4)) D and E are not printed D and E are printed in E12.4 format D and E are printed in default (WRITE(6,*)) format An error results from attempting to print D in I5 format An error message indicates that the end of format was reached before end of data Back to the 201 Homepage or Next Question
WRITE (6,2000)I,J,A,B,C,D,E 2000 FORMAT(1X,2I5,(3E12.4))
2000 FORMAT(1X,2I5,(3E12.4))
D and E are printed in E12.4 format
D and E are printed in default (WRITE(6,*)) format
An error results from attempting to print D in I5 format
An error message indicates that the end of format was reached before end of data