c++ 计算软件耗时

引入 time.h文件

#include 
#include 
int main(){
     
clock_t start = clock(); //开始时间
clock_t end = clock();   //结束时间
double time_ = (double)(end - start) / CLOCKS_PER_SEC;  //作差  转为秒
std::cout << time_;
}

你可能感兴趣的:(c++)