⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iolength_3.f90

📁 linux下编程用 编译软件
💻 F90
字号:
! Test that IOLENGTH works for io list containing more than one entryprogram iolength_3  implicit none  integer, parameter ::  &       ! 32 bit, i.e. 4 byte integer (every gcc architecture should have this?)       int32 = selected_int_kind(9), &       ! IEEE double precision, i.e. 8 bytes       dp = selected_real_kind(15, 307)  integer(int32) :: a, b, iol  real(dp) :: c  inquire (iolength = iol) a, b, c  if ( 16 /= iol) then     call abort  end ifend program iolength_3

⌨️ 快捷键说明

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