complex_int_1.f90

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

F90
16
字号
! { dg-do compile }! Complex constants with integer components should take ther kind from! the real typed component, or default complex type if both components have! integer type.program prog  call test1 ((1_8, 1.0_4))  call test2 ((1_8, 2_8))containssubroutine test1(x)  complex(4) :: xend subroutinesubroutine test2(x)  complex :: xend subroutineend program

⌨️ 快捷键说明

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