windows平台下fortran编程删除文件
1、关于codeblocks IDE的极速安装
请参考百度经验<<Windows下极速搭建fortran开发环境>>

2、编写fortran代码
如下:
program main
implicit none
open(168,FILE="c:\\fortran.txt")
close(168,status="delete")
print *,"已经删除C盘根目录下fortran.txt"
end
3、编译、链接:

4、测试、运行:

阅读量:77
阅读量:57
阅读量:182
阅读量:55
阅读量:59