intrinsic_dprod.f90

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· F90 代码 · 共 14 行

F90
14
字号
! Program to test DPROD intrinsicprogram intrinsic_dprod   implicit none   real r, s, t   double precision dp   ! 6d60 doesn't fit in a 4-byte real   r = 2e30   s = 4e30   dp = dprod (r, s)   if ((dp .gt. 8.001d60) .or. (dp .lt. 7.999d60)) call abortend program

⌨️ 快捷键说明

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