#include <ctime>

 static clock_t Start,Finish;

 Start=clock();

 fun();

 Finish = clock();
double time_second=double(Finish-Start)/CLOCKS_PER_SEC; printf(fun()运行时间:%fs",time_second);

用于测试一个函数的运行时间。

05-11 10:58