📄 cparrs.f
字号:
Subroutine cparrs( sa, ta, b, n )! ----------------------------------------------------------------------! --- 'cparrs' copies the source arrays 'sa' into the target! arrays 'ta' and initialises 'b' to 0.0.! ---------------------------------------------------------------------- Use numerics Implicit None Integer :: n Real(l_) :: sa(n), ta(n), b(n)! ---------------------------------------------------------------------- ta = sa b = 0.0_l_! ---------------------------------------------------------------------- End Subroutine cparrs
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -