data_2.f90

来自「linux下编程用 编译软件」· F90 代码 · 共 18 行

F90
18
字号
! Check more array variants of the data statementprogram data_2  implicit none  type t    integer i  end type t  integer, dimension(3) :: a  type (t), dimension(3) :: b  integer, dimension(2,2) :: c  data a(:), b%i /1, 2, 3, 4, 5, 6/  data c(1, :), c(2, :) /7, 8, 9, 10/  if (any (a .ne. (/1, 2, 3/))) call abort ()  if (any (b%i .ne. (/4, 5, 6/))) call abort ()  if ((any (c(1, :) .ne. (/7, 8/))) &      .or. (any (c(2,:) .ne. (/9, 10/)))) call abort ()end program

⌨️ 快捷键说明

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