各位老师好,我想直接读入某一行的文本数据但是出现错误,这里要怎么解决呢。
出现错误为:forrtl: severe (256): unformatted I/O to unit open for formatted transfers
[Fortran] 纯文本查看 复制代码 program main
implicit none
character(len=15)::model
real::a,b,c,d
open(11,file='222.txt',form='formatted',access='direct',recl=16)
read(11,rec=2)model,a,b,c,d
write(6,rec=2)model,a,b,c,d
endprogram
|