什麼是fortran語言之fortran語言入門
阿新 • • 發佈:2018-11-12
Fortran程式是由程式單元,如一個主程式,模組和外部子程式或程式的集合。
每個程式包括一個主程式和可以或可以不包含其它程式單元。主程式的語法如下:
program program_name implicit none ! type declaration statements ! executable statements end program program_name
一個簡單的Fortran程式
讓我們來寫一個程式,相加了兩個數字,並打印出結果:
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
詳細教程 http://nopapp.com/Blog/Article/what-is-fortran 什麼是fortran語言