C++中获取时间
#include<time.h> //获取时间头文件
//-------------------------------------- clock_t start_time=clock(); //开始时间 { //...... } clock_t end_time=clock(); //结束时间 //-------------------------------------- cout<< "Running time is: " <<static_cast<double>(end_time - start_time)/CLOCKS_PER_SEC <<"(s)"<<endl; //输出运行时间
posted on 2017-05-13 16:41 HelloShijam 阅读(372) 评论(0) 编辑 收藏 举报