intrinsic_spacing.f90
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· F90 代码 · 共 36 行
F90
36 行
!Program to test SPACING intrinsic function.program test_spacing call test_real4(3.0) call test_real4(33.0) call test_real4(-3.) call test_real4(0.0) call test_real8(0.0_8) call test_real8(3.0_8) call test_real8(33.0_8) call test_real8(-33._8)endsubroutine test_real4(orig) real x,y,t,orig integer p x = orig p = 24 y = 2.0 ** (exponent (x) - p) t = tiny(x) x = spacing(x) if ((abs (x - y) .gt. abs(x * 1e-6)) & .and. (abs (x - t) .gt. abs(x * 1e-6)))call abortendsubroutine test_real8(orig) real*8 x,y,t,orig integer p x = orig p = 53 y = 2.0 ** (exponent (x) - p) t = tiny (x) x = spacing(x) if ((abs (x - y) .gt. abs(x * 1e-6)) & .and. (abs (x - t) .gt. abs(x * 1e-6)))call abortend
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?