查看挰序运行时间 c c++

头文件

#include<ctime>

int main()

{

    time_t   begin,end;
    begin=clock();

//中间运行代码

    end=clock();
    cout<<"runtime:   "<<double(end-begin)/CLOCKS_PER_SEC<<endl;  

}

你可能感兴趣的:(C++,c,程序运行时间)