请大佬教教我怎么在ubuntu 下使用Fortran!!!!!
请大佬教教我怎么在ubuntu 下使用Fortran!!!!!请大佬教教我怎么在ubuntu 下使用Fortran!!!!!
请大佬教教我怎么在ubuntu 下使用Fortran!!!!!
比如说最简单的,Ubuntu怎么调用编写好的Fortran脚本。。。。
非常感谢您!!!!!!!!!!!!!!!!!!!
非常感谢您!!!!!!!!!!!!!!!!!!!
非常感谢您!!!!!!!!!!!!!!!!!!! $ cat main.f95
program addNumbers
! This simple program adds two numbers
implicit none
! Type declarations
real :: a, b, result
! Executable statements
a = 12.0
b = 15.0
result = a + b
print *, 'The total is ', result
end program addNumbers
$ gfortran -o main main.f95
$ ./main
The total is 27.0000000
$
在 linux 下编译任何语言代码都可以使用 g++,关键是,代码文件的扩展名必须取对了。
g++ -o x x.f
页:
[1]