ta_ta 发表于 2021-9-22 15:52:12

请大佬教教我怎么在ubuntu 下使用Fortran!!!!!

请大佬教教我怎么在ubuntu 下使用Fortran!!!!!
请大佬教教我怎么在ubuntu 下使用Fortran!!!!!
请大佬教教我怎么在ubuntu 下使用Fortran!!!!!

比如说最简单的,Ubuntu怎么调用编写好的Fortran脚本。。。。

非常感谢您!!!!!!!!!!!!!!!!!!!
非常感谢您!!!!!!!!!!!!!!!!!!!
非常感谢您!!!!!!!!!!!!!!!!!!!

人造人 发表于 2021-9-22 15:52:13

$ 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   
$

jackz007 发表于 2021-9-23 21:41:26

   在 linux 下编译任何语言代码都可以使用 g++,关键是,代码文件的扩展名必须取对了。
g++ -o x x.f
页: [1]
查看完整版本: 请大佬教教我怎么在ubuntu 下使用Fortran!!!!!