0

我是 Fortran 新手,正在做一些基础练习。我已经安装了柏拉图最新版本。我在网上找到了这个程序,并尝试编译它

program dotprod
  implicit none
  real :: c
  real, dimension(3) :: a, b
  print*,'Enter first vector'
  read*, a
  print*,'Enter second vector'
  read*, b
  c = a(1)*b(1) + a(2)*b(2) + a(3)*b(3)
  print*,'Dot product = ', c

end program dotprod

Plato 在构建和编译时没有显示任何错误迹象,但是当我尝试运行程序时出现以下错误消息:可执行文件不存在。

谁能帮我解释如何处理这个错误?

谢谢

4

1 回答 1

1

也许你的文件名太长了。我收到了同样的错误消息,然后我用另一个更短的名称保存了文件,突然它就起作用了……我还尝试了你的代码,它在我的 Plato(FTN95 个人版(FTN95PE)7.20 版)上运行在 Windows 10 上。

于 2015-10-07T19:23:01.953 回答