编写简单的 Fortran 程序 (*.f90) 并使用 Visual Studio 2008 进行编译
如何编写一个简单的 Fortran 程序 (*.f90) 并使用 Visual Studion 2008 对其进行编译?我需要一步一步的程序。
How can I write a simple Fortran program (*.f90) and compile it using Visual Studion 2008? I need step by step procedure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要一些预处理步骤,将 Fortran 代码转换为 C++、C# 或 VB 等代码。 Visual Studio 没有 Fortran 编译器。
如果您在 VS 中使用 Intel 的 Fortran 编译器(如评论中建议的那样),请启动 此处。它根据要求提供了分步指南。
此外,英特尔还运营自己的论坛,其中可能包含您需要的信息(或者如果您向他们提问,他们应该予以回复)。单击此处并向下滚动至
英特尔® 软件开发产品
。Well, first you'll need some pre-processing step which will turn your Fortran code into something like C++, C#, or VB. Visual Studio doesn't have a Fortran compiler.
If you are using Intel's Fortran compiler with VS (as suggested in a comment), start here. It has a step-by-step guide as requested.
In addition, Intel run their own forums which may have the information you require (or should respond if you ask them a question). Click here and scroll down to
Intel® Software Development Products
.