私は非常に新しい Fortran で、初歩的な練習をしています。Plato最新版をインストールしました。このプログラムをネットで見つけたので、コンパイルしてみます
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 は、ビルドおよびコンパイル時にエラーの兆候を示しませんが、プログラムを実行しようとすると、次のエラー メッセージが表示されます。実行可能ファイルが存在しません。
このエラーの処理方法を説明してくれる人はいますか?
ありがとう