Fortran笔记,文件,part2-顺序/直接访问文件,二进制文件
参考资料:彭国论,《Fortran 95程序设计》,2002年
第9章
顺序访问文件直接访问文件二进制文件的操作内部文件
1. 顺序访问文件
顺序文件读写时,不能任意赋值到文件的某个位置读写数据,只能从头开始一步步向下进行。改变文件读写位置时,只能一步步地进退,或是直接移回文件开头。
EX0906.F90的实现
! 自定义的student数据结构
module typedef
!?implicit none
type student
integer CH, MA, EN ! 成绩
end type student
end module typedef
program Chapter9
use typedef ! student数据结构在该module中被定义
implicit none
! Page 244, EX0906
! write information of stu
共有 0 条评论