回 帖 发 新 帖 刷新版面

主题:[讨论]关于内部子程序

program main
real a

call hx(...)
call hy(...)
contains hx(...)
a=6
end
contains
 subroutine hy(...)
a=7
end
想法如上:在主程序里设定a为real型,然后可以在两个不同的内部子程序里给a分别赋值不?而且值的大小不同?

回复列表 (共1个回复)

沙发

...
Contains
    Subroutine hx()
        a=6d0
    End Subroutine

    Subroutine hy()
        a=7d0
    End Subroutine
End

我来回复

您尚未登录,请登录后再回复。点此登录或注册