跑老师给的以前编好的程序,build还出了问题。 这个second子程序,定义的时候就有13个参数吖,为什么还报错了。 |
program P
use test
implicit none
integer a,b
a=2
call second(a,b)
print *,b
end program P
module test
implicit none
contains
subroutine second(arg1, arg2)
integer, intent(in) :: arg1
integer, intent(out) :: arg2
arg2=arg1
end subroutine second
end module test
欢迎光临 Fortran Coder (http://bbs.fcode.cn/) | Powered by Discuz! X3.2 |