码迷,mamicode.com
首页 > 其他好文 > 详细

C程序运行计时

时间:2015-10-29 18:09:44      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

在标准的C/C++中最小的时间单位是毫秒ms,下面代码中clock_t是long; 每经过1ms clock()的值就增加1;常量CLOCKS_PER_SEC,它用来表示一秒钟会有多少个时钟计时单元

 1 #include<iostream>
 2 #include<ctime>
 3 using namespace std;
 4  
 5 int main()
 6 {
 7     clock_t start,finish;
 8     start=clock();
 9     double result;
10 
11     //测试数据,
12     long long sum;
13      for(int i=0;i<100000000;i++){
14          sum+=i;
15      }
16  
17  
18     finish=clock();
19     result=(double) (finish-start)/CLOCKS_PER_SEC; 
20       cout<<result;  //输出单位是s 
21     return 0;
22 }

 

 

http://www.cnblogs.com/dwdxdy/p/3214905.html

C程序运行计时

标签:

原文地址:http://www.cnblogs.com/liugl7/p/4921212.html

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