标签:double str time 计算 lock put HERE class clu
1 #include <ctime> 2 #include <iostream> 3 int main() { 4 clock_t start, finish; 5 double total_time; 6 start = clock(); 7 //put your code here 8 finish = clock(); 9 total_time = (double)(finish - start) / CLOCKS_PER_SEC; 10 printf("%fs\n", total_time); 11 }
标签:double str time 计算 lock put HERE class clu
原文地址:https://www.cnblogs.com/Fo0o0ol/p/11154605.html