摘要: #include <time.h>clock_t start,ends;start=clock();system("pause");ends=clock();cout<<ends-start<<endl;time_t 获得时间只能精确到秒,clock_t 获得时间能够精确到毫秒 阅读全文
posted @ 2010-12-16 15:39 lucyjiayou 阅读(12454) 评论(2) 推荐(1)