系统找不到指定路径
语句:integer i
read(*,*)a
write(*,*)a
end
结果:
The system cannot find the path specified.
Press any key to continue . . .
语句也蛮简单的,但是却出现了上面这两句,系统找不到指定路径,是配置方面的问题吗?该如何解决呢?
本帖最后由 风平老涡 于 2022-3-27 23:35 编辑
首先程序编译就不会通过,更何况运行。
program test
implicit none
integeri
read(*, *) i
write(*, *) i
end program 代码没有问题,应该是编译环境安装或操作不对。 风平老涡 发表于 2022-3-27 23:34
首先程序编译就不会通过,更何况运行。
program test
谢谢大佬,刚开始学,多谢指点。
页:
[1]