1 #include <time.h> 2 3 time_t start, end; 4 time(&start);//1970年1月1日0时0分0秒至今的秒数 5 6 /*代码段*/ 7 8 time(&end); 9 cout << Using time: << end - start << endl;
1 #include <time.h> 2 3 time_t start, end; 4 time(&start);//1970年1月1日0时0分0秒至今的秒数 5 6 /*代码段*/ 7 8 time(&end); 9 cout << Using time: << end - start << endl;
转载于:https://www.cnblogs.com/fymeng/p/11143520.html