我是 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 在构建和编译时没有显示任何错误迹象,但是当我尝试运行程序时出现以下错误消息:可执行文件不存在。
谁能帮我解释如何处理这个错误?
谢谢