1 Runtime error: End of file 1 Fortran runtime error: End of file -1 "Fortran runtime error: End of file" while writing 1 How can I solve Fortran runtime error: End of file? 1 Fortran code error: Fortran runtime error: End of file Hot Network Questions Can a mixed effects...
end of file 的意思是在读3号文件(即taurus_data.out)的时候当文件读完了程序却还要求继续访问。如果你确定数据读完了,那么如果开头没有implicit none的话就在直接把第30行改成:READ(3,*,iostat=ios,err=20)mass(j),a1,b1,nouse,nouse,nouse,nouse,nouse,id,nouse if(ios.ne.0)exit ...
open(unit=10,file="data.dat") read(10,*) some_variable, somevar2 close(10) So I can't understand why this function I wrote is not working. It compiles fine but when I run it it prints: fortran runtime error:end of file Code: Function Load_Names() character(len=30) :: Staff_...
Describe the bug While running WRFDA 4DVAR with RRTMG-K radiation the following error occurs: At line 12537 of file module_ra_rrtmg_lwk.f90 (unit = 10, file = 'RRTMG_LW_DATA') Fortran runtime error: End of file To Reproduce Steps to repr...
Fortran runtime error: End of file Error termination. Backtrace:#0 0x147900b38d21 in ???#1 ...
已解决 跳转至解决方案 I 'inherited' some FORTRAN/IMSL code that I can get to compile and link cleanly, but am getting the error below at runtime, for both the 'Debug' and 'Release' versions of the *.exe file ... this is my first FORTRAN application and I will confess to being ...
初级粉丝 1 在centos下运行fortran项目,输出到一半出现报错提示,并终止输出,报错提示:Fortran runtime error: End of file这个项目代码应该是没问题的,拿到它是要改进它。linux报错提示:rddumx.f 的第20行登录百度帐号 扫二维码下载贴吧客户端 下载贴吧APP看高清直播、视频! 贴吧页面意见反馈 违规贴吧举报反馈通道...
fortran runtime error问题怎么解决 只看楼主 收藏 回复 809204345 初级粉丝 1 各位大神,请问出现上面提示的错误,怎么解决 笨死了 初级粉丝 1 楼主问题解决了吗 登录百度帐号 下次自动登录 忘记密码? 扫二维码下载贴吧客户端 下载贴吧APP看高清直播、视频! 贴吧页面意见反馈 违规贴吧举报反馈通道 贴吧违规信息处理...
fortran程序处理的文件分为顺序文件和随机文件(直接文件)。你这里错误的意思是:写随机文件时的记录超长(出界了)!!!