F_G

许多问题需要说清楚就可以&&走永远比跑来的重要

导航

[C++] C++ 计时的例子

double dur;
clock_t start,end;
start = clock();
。。。。。。
end = clock();
dur = (double)(end - start);
printf("Use Time:%f\n",(dur/CLOCKS_PER_SEC));

posted on 2016-01-03 15:00  F_G  阅读(237)  评论(0编辑  收藏  举报