procarg.f90

来自「用于进行gcc测试」· F90 代码 · 共 30 行

F90
30
字号
! Pogram to testsubroutine myp (a)   implicit none   integer a   if (a .ne. 42) call abortend subroutinesubroutine test2 (p)   implicit none   external p   call p(42)end subroutinesubroutine test (p)   implicit none   external p, test2   call p(42)   call test2(p)end subroutineprogram arrayio   implicit none   external test, myp   call test (myp)end program

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?