柏拉图中的错误信息

时间:2014-05-31 15:56:25

标签: fortran fortran90 plato

我是新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在构建和编译时没有显示错误的迹象,但是当我尝试运行程序时,会显示以下错误消息:可执行文件不存在。

任何人都可以帮我解释如何处理这个错误吗?

谢谢

1 个答案:

答案 0 :(得分:1)

也许你的文件名太长了。我有相同的错误消息,然后我使用另一个较短的名称保存文件,突然它工作...我也尝试了你的代码,它适用于我的柏拉图(FTN95个人版(FTN95PE)版本7.20)在Windows 10上。< / p>