由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - Fortran里面哪个函数显示系统时间?
相关主题
a question about mpi-fortranMPI Write?
problem about Fortran 77 in unix[转载] 问一个fortran的问题
请教一个程序调用问题(FORTRAN DLL),谢谢!Fotran77程序的移植问题
求矩阵逆的算法Problems about Mex-file to call Fortran
help on interface for Matlab and Fortranfortran的random number 相关的函数lib是啥?
Re: fortran subroutine and function再问个Fortran得问题
偶也问一fortran问题发现一个有趣的事情,关于fortran IMSL library
Fortran code optimization请教fortran debuger
相关话题的讨论汇总
话题: today话题: now话题: date话题: itime话题: idate
进入Computation版参与讨论
1 (共1页)
h***o
发帖数: 539
1
啊?
各位高手
g***i
发帖数: 90
2
有很多函数的
f77下(应该)可以
program when
integer*4 today(3), now(3)
call idate(today) ! today(1)=day, (2)=month, (3)=year
call itime(now) ! now(1)=hour, (2)=minute, (3)=second
write ( *, 1000 ) today(2), today(1), today(3), now
1000 format ( 'Date ', i2.2, '/', i2.2, '/', i4.4, '; time ',
& i2.2, ':', i2.2, ':', i2.2 )
stop
end
f90下:date_and_time()
这里是一个例子:输出当前一时间点(有点象cputime)
subroutine comp_time(tm)

real*16 tm


【在 h***o 的大作中提到】
: 啊?
: 各位高手

h***o
发帖数: 539
3
f77 na?

【在 g***i 的大作中提到】
: 有很多函数的
: f77下(应该)可以
: program when
: integer*4 today(3), now(3)
: call idate(today) ! today(1)=day, (2)=month, (3)=year
: call itime(now) ! now(1)=hour, (2)=minute, (3)=second
: write ( *, 1000 ) today(2), today(1), today(3), now
: 1000 format ( 'Date ', i2.2, '/', i2.2, '/', i4.4, '; time ',
: & i2.2, ':', i2.2, ':', i2.2 )
: stop

g***i
发帖数: 90
4
date 和 time吧
不太记得了,很就不用,hehe

【在 h***o 的大作中提到】
: f77 na?
w*******a
发帖数: 41
5
function idate and itime.
Both 77 and 90, it works well.

【在 h***o 的大作中提到】
: f77 na?
h***o
发帖数: 539
6
thanks, you guys.

【在 w*******a 的大作中提到】
: function idate and itime.
: Both 77 and 90, it works well.

1 (共1页)
进入Computation版参与讨论
相关主题
请教fortran debugerhelp on interface for Matlab and Fortran
问个fortran和python编程的问题Re: fortran subroutine and function
Fortran里面子程序用END和END SUBROUTINE结尾有什么区别?偶也问一fortran问题
CSC format matrix + CSC format matrix ?Fortran code optimization
a question about mpi-fortranMPI Write?
problem about Fortran 77 in unix[转载] 问一个fortran的问题
请教一个程序调用问题(FORTRAN DLL),谢谢!Fotran77程序的移植问题
求矩阵逆的算法Problems about Mex-file to call Fortran
相关话题的讨论汇总
话题: today话题: now话题: date话题: itime话题: idate