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

对时间日期的操作

时间:2014-10-09 01:57:47      阅读:397      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   sp   div   art   

clock()主要用来计算一个事件持续的时间

  1 //该程序计算一个时间持续的时间
  2 #include <iostream>
  3 #include <time.h>
  4 #include <stdlib.h>
  5 
  6 using namespace std;
  7 
  8 int main()
  9 {
 10     clock_t start, finish;
 11     start = clock();
 12     cout << (double)start / CLOCKS_PER_SEC << endl;
 13     int i = 10000000;
 14     while(i--);
 15     finish = clock();
 16     cout << (double)finish / CLOCKS_PER_SEC << endl; //将结果转化为以秒为单位
 17     return 0;
 18 }

 

对时间日期的操作

标签:style   blog   color   io   os   ar   sp   div   art   

原文地址:http://www.cnblogs.com/DamonBlog/p/4011787.html

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