利用标准库 time 可以实现以毫秒为最小单位的计时操作

#include <time.h>
using namespace std;

int main() {
 clock_t start, finish;
 
double duration;
 start 
= clock();
 execute();
 finish 
= clock();
 duration 
= (double)(finish - start) / CLOCKS_PER_SEC; //
 cout << "time is " << duration << endl;
 
return 0;
}

//被雷到了,居然有c#没有c++


更多关于c++时间操作的信息看这
http://www.cnitblog.com/ictfly/archive/2007/01/15/21886.html