FORTRAN語言是Formula Translation的縮寫,意為「公式翻譯」。它是為科學、工程問題或企事業管理中的那些能夠用數學公式表達的問題而設計的,其數值計算的功能較強。
FORTRAN語言是世界上第一個被正式推廣使用的高階語言。它是1954年被提出來的,1956年開始正式使用,直到2014年已有六十年的歷史,但仍歷久不衰,它始終是數值計算領域所使用的主要語言。
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
以上是fortran是什麼語言嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!