Fortran 90 的段落式的註解

2021-08-22 06:45:04 字數 606 閱讀 4737

cpp **

! main() begin   

implicit none   

print *, 'hello world at 1201'   

! print *, 'hello world at 1202'   

print *, 'hello world at 1203'   

!dec$if (.false.)   

print *, 'hello world at 1204'   

print *, 'hello world at 1205'   

print *, 'hello world at 1206'   

!dec$endif   

print *, 'hello world at 1207'   

end   

! end of file   

! 的註解,只能夠處理 一整行的註解,如果碰到 整個段落的註解,

就要改用 上面所示範的註解。

註解是 非常重要的東西,請適當和正確的使用 註解。

其中的 "dec" 應該是 dec 電腦公司的意思,可能當初這個標準是

這個公司制定的吧。

Fortran中的指標使用

fortran中的指標如何使用,功能怎樣,下面的的5個例子足可以讓你明白一切 對於單個值,用起來很簡單,但是無法體現指標的強大功能,示例1 program test pointer 1 implicit none integer,pointer p1,p2 定義指標 integer s alloca...

Fortran 宣告的注意事項

implicit none 讓每個變數必須顯示宣告。parameter 常數宣告 常數宣告的兩種方法 program parameter implicit none real a real parameter b 3.15 parameter a 3.14 write 3x,f5.2 a write...

Fortran中的輸入輸出!!!

我們學習計算機語言的目的在於與計算機進行互動 輸入即向計算機傳送指令,輸出即計算機對我們傳送的指令做出的響應 所以互動的前提首先要搞清程式語言的輸入輸出 輸入輸出方法有 write print read 我們需要在輸入輸出語句中提供三方面的資訊 1 通過什麼裝置進行輸入輸出 2 採用的輸入輸出格式 ...