码迷,mamicode.com
首页 > 其他好文 > 详细

求时间差

时间:2014-07-22 23:08:54      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:re   c   时间   程序   print   null   

time_t   first,   second;

first   =   time(NULL);

//   你的程序         ...............

second   =   time(NULL);

printf("The   difference   is:   %f   seconds\n",difftime(second,first));

 

// 分钟

int imin = (isec / 60) % 60;

// 小时

int ihour = isec / 60 / 60;

//秒

int isec = (isec % 60) % 60;

求时间差,码迷,mamicode.com

求时间差

标签:re   c   时间   程序   print   null   

原文地址:http://www.cnblogs.com/ADaii/p/3700439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!