摘要: 原文地址:未知。第一种方法:#i nclude <sys/time.h> int gettimeofday(struct timeval *tv,struct timezone *tz); strut timeval { long tv_sec; /* 秒数 */ long tv_usec; /* 微秒数 */ }; gettimeofday将时间保存在结构tv之中.tz一般我们使用NULL来代替。以下是程序:#i nclude <sys/time.h> #i nclude <stdio.h> #i nclude <math.h>void fun 阅读全文
posted @ 2012-12-08 11:33 NeilHappy 阅读(16956) 评论(0) 推荐(0) 编辑