- 积分
- 0
- 注册时间
- 2006-3-27
- 仿真币
-
- 最后登录
- 1970-1-1
|
本人由于工作需要,找到相关的源程序是用fortran编写的,但是小弟我以前从没有接触过
fortran语言,所以感觉很无助,从头开始学又觉得很没必要,因为我的工作要求是用matlab
,现求助各位大哥大姐们帮助,下面的程序段到底是什么意思???谢谢!!!
subroutine time_print
implicit none
integer, parameter :: output = 6
! . local scalars.
character ( len = 8 ) :: datstr
character ( len = 10 ) :: timstr
! . Get the current date and time.
call date_and_time ( datstr, timstr )
! . Write out the date and time.
write ( output, "(/A)" ) " Date = " // datstr(7:8) // "/" // &
datstr(5:6) // "/" // &
datstr(1:4)
write ( output, "(A)" ) " Time = " // timstr(1:2) // ":" // &
timstr(3:4) // ":" // &
timstr(5:10)
write ( output, *)
end subroutine time_print |
|