module A
integer::n
end module A
module B
use A
implicit none
real,allocatable::y(:)
contains
subroutine Kk
n=3
allocate(y(n))
end subroutine kk
end module B
program xx
use B
implicit none
call kk
call cc
pause
end program
subroutine cc
use B
implicit none
integer::I
do I=1,N
write(*,*)I,N
pause
enddo
end subroutine
fcode 发表于 2015-9-4 10:41
昨天可能服务器出了点问题,我们丢失了昨天的几个帖子。并无违规。
是的,模块可以继承。所以主程序和 CC ...
欢迎光临 Fortran Coder (http://bbs.fcode.cn/) | Powered by Discuz! X3.2 |