码迷,mamicode.com
首页 > 编程语言 > 详细

C++中计算程序运行的时间

时间:2014-06-14 12:11:28      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   tar   art   c++   代码   时间   

首先定义clock_t start, end;

然后在自己要测试那段代码的前面加上start = clock(); 结尾加上end = clock();

最后用输出语句进行

 cout<<"Run time: "<<(double)(end - start) / CLOCKS_PER_SEC<<"S"<<endl;
 cout<<"Run time: "<<(double)(end - start)<<"ms"<<endl;

C++中计算程序运行的时间,布布扣,bubuko.com

C++中计算程序运行的时间

标签:style   tar   art   c++   代码   时间   

原文地址:http://blog.csdn.net/lxy201700/article/details/30492617

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!