xxbb 发表于 2022-3-27 16:50:47

系统找不到指定路径

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

风平老涡 发表于 2022-3-27 23:34:09

本帖最后由 风平老涡 于 2022-3-27 23:35 编辑

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

program test
    implicit none
    integeri

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

胡文刚 发表于 2022-3-28 08:46:18

代码没有问题,应该是编译环境安装或操作不对。

xxbb 发表于 2022-4-3 15:45:59

风平老涡 发表于 2022-3-27 23:34
首先程序编译就不会通过,更何况运行。

program test


谢谢大佬,刚开始学,多谢指点。
页: [1]
查看完整版本: 系统找不到指定路径