流体力学から数値計算まで

広告


include文

ファイルを読み込む命令文です。使用する配列等をまとめて宣言しておくと便利です。

       include “head.for”
       call hoge()
       stop
       end

       subroutine hoge()
       include “head.for”

head.for

       implicit double precision(a-h,o-z)
       dimension ary1(499)
       dimension ary2(499,499)

prev | top | next

カウンタ

(2011.3.15〜)