partparm.f90

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· F90 代码 · 共 16 行

F90
16
字号
! Program to test subroutine test (p)   integer, dimension (3) :: p   if (any (p .ne. (/ 2, 4, 6/))) call abortend subroutineprogram partparm   implicit none   integer, dimension (2, 3) :: a   external test   a = reshape ((/ 1, 2, 3, 4, 5, 6/), (/ 2, 3/))   call test (a(2, :))end program

⌨️ 快捷键说明

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