0

我对 fortran 完全陌生,之前只做过一些 python 和 c++。我尝试按照教程进行操作,但无法让我的编译器工作。

当我尝试该程序时:

program helloworld
    print *,"Hello World!"
end program helloworld

在记事本中保存为“fort.f”,使用 Windows 的 g95 编译器,然后尝试两者

g95 -c fort.f

g95 fort.f -o fort

在 cmd 的正确文件夹中

我明白了:

In file fort.f:1

program helloworld
 1
Error: Non-numeric character in statement label at (1)
In file fort.f:1

program helloworld
 1
Error: Unclassifiable statement at (1)
In file fort.f:3

end program helloworld
 1
Error: Non-numeric character in statement label at (1)
In file fort.f:3

end program helloworld
 1
Error: Unclassifiable statement at (1)
Error: Unexpected end of file in 'fort.f'

我试过用谷歌搜索错误,但看不到它们如何应用于这个简单的代码,它取自教程,因此应该可以工作。那么可能是关于我的编译命令或 g95 的安装?

4

0 回答 0