导航

求时间差

Posted on 2014-04-29 23:59  ADaii  阅读(120)  评论(0编辑  收藏  举报

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;