program fcode_cn
implicit none
integer :: a(3)
Open(11,File="a.txt")
Read(11,*) a
Rewind(11)
Write(11,"(g0)") a([1,3])
Close(11)
end program fcode_cn
vvt 发表于 2023-6-3 11:58
全部读到内存,然后重新写一遍。
[mw_shl_code=fortran,true]program fcode_cn
implicit none
program fcode_cn
implicit none
integer :: a(2)
Open(11,File="a.txt")
Read(11,*) a
endfile(11)
Close(11)
end program fcode_cn
vvt 发表于 2023-6-3 12:32
文件末尾删除数据不用这么麻烦。
[mw_shl_code=fortran,true]program fcode_cn
欢迎光临 Fortran Coder (http://bbs.fcode.cn/) | Powered by Discuz! X3.2 |