Fortran语⾔基础教程
!
什么是Fortran?
!
Fortran(Formula Translation)是⼀种历史悠久的编程语⾔,最初设计⽤于数值计算和科学计算。
它由IBM的约翰·巴克斯(John Backus)在1957年创建,⾄今仍被⼴泛⽤于⼯程、科学和数学领
域。
Fortran环境搭建
!
安装编译器
!
Fortran程序需要编译器来编译和运⾏。⼀些流⾏的Fortran编译器包括:
GNU Fortran(gfortran)
Intel Fortran Compiler
PGI Fortran
在Linux上,你可以使⽤包管理器安装gfortran:
在Windows上,你可以从GCC官⽅⽹站下载MinGW-w64,它包含了gfortran。
编写第⼀个Fortran程序
!
创建⼀个名为 hello.f90 的⽂件,并写⼊以下代码:
使⽤编译器编译并运⾏程序:
sudo apt-get install gfortran
program hello_world
print *, 'Hello, World!'
end program hello_world
gfortran -o hello hello.f90
./hello