什麼是fortran語言之fortran語言入門

Fortran源自於「公式翻譯」(英語:FormulaTranslation)的縮寫,是一種編程語言。它是世界上最先出現的計算機高級程序設計語言,普遍應用於科學和工程計算領域。FORTRAN語言以其特有的功能在數值、科學和工程計算領域發揮着重要做用。Fortran 90以前的版本是人們所知曉的FORTRAN(所有字母大寫),從Fortran 90以及之後的版本都寫成Fortran(僅有第一個字母大寫)。編程

Fortran程序是由程序單元,如一個主程序,模塊和外部子程序或程序的集合。app

每一個程序包括一個主程序和能夠或能夠不包含其它程序單元。主程序的語法以下:編程語言

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語言設計

相關文章
相關標籤/搜索