Fortran Coder

标题: 系统找不到指定路径 [打印本页]

作者: xxbb    时间: 2022-3-27 16:50
标题: 系统找不到指定路径
语句:
[Fortran] 纯文本查看 复制代码
      integer i
      read(*,*)a
      write(*,*)a
      end

结果:
The system cannot find the path specified.
Press any key to continue . . .
  语句也蛮简单的,但是却出现了上面这两句,系统找不到指定路径,是配置方面的问题吗?该如何解决呢?


作者: 风平老涡    时间: 2022-3-27 23:34
本帖最后由 风平老涡 于 2022-3-27 23:35 编辑

首先程序编译就不会通过,更何况运行。

[Fortran] 纯文本查看 复制代码
program test
    implicit none
    integer  i

    read(*, *) i
    write(*, *) i
end program

作者: 胡文刚    时间: 2022-3-28 08:46
代码没有问题,应该是编译环境安装或操作不对。
作者: xxbb    时间: 2022-4-3 15:45
风平老涡 发表于 2022-3-27 23:34
首先程序编译就不会通过,更何况运行。

[mw_shl_code=fortran,true]program test

谢谢大佬,刚开始学,多谢指点。




欢迎光临 Fortran Coder (http://bbs.fcode.cn/) Powered by Discuz! X3.2