intrinsic_size.f90
来自「linux下编程用 编译软件」· F90 代码 · 共 38 行
F90
38 行
! Program to test the SIZE intrinsicsprogram testsize implicit none real, dimension(:, :), allocatable :: a integer, dimension(5) :: j integer, dimension(2, 3) :: b integer i if (size (b(2, :), 1) .ne. 3) call abort allocate (a(3:8, 5:7)) ! With one parameter if (size(a) .ne. 18) call abort ! With two parameters, assigning to an array j = size(a, 1) if (any (j .ne. (/6, 6, 6, 6, 6/))) call abort ! With a variable second parameter i = 2 i = size(a, i) if (i .ne. 3) call abort call test(a)containssubroutine test (a) real, dimension (1:, 1:) :: a integer i i = 2 if ((size(a, 1) .ne. 6) .or. (size(a, i) .ne. 3)) call abort if (size (a) .ne. 18 ) call abortend subroutineend program
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?