[Fortran] 纯文本查看 复制代码 module global
implicit none
contains
subroutine fun(a)
real a(:,:)
a = 3
End subroutine
end module
Program www_fcode_cn
Implicit None
real a(3,2)
use global
Write (*, '(6f3.0)') a
end program
错误
Error: USE statement at (1) cannot follow data declaration statement at (2)
提示错误在use上 改了好久不知道怎么办呢
|