📄 check1.f
字号:
Subroutine check1( sy, ok )! -------------------------------------------------------------------! --- 'check1' checks whether the operations done in routine 'oper1'! have been performed correctly. Only the target variable 'sy'! has to be checked.! ------------------------------------------------------------------- Use numerics Implicit None Real(l_) :: sy Logical :: ok Real(l_) :: eps! ------------------------------------------------------------------- eps = 5.0_l_*Epsilon( 1.0_l_ ) If ( Abs( sy - 1.0_l_ ) > eps ) ok = .FALSE.! ------------------------------------------------------------------- End Subroutine check1
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -