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

C++计时

时间:2015-12-30 21:39:02      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

  

#include <ctime>
#include <iostream>

using namespace std;

int main(void)
{
    long i = 100000000L;
    clock_t start, finish;
    start = clock();
    
    while (i--)
    {
        /*
        do something
        */
    }
    finish = clock();

    cout << "time:" << (double)(finish - start) / CLOCKS_PER_SEC;

    system("pause");
}

 

C++计时

标签:

原文地址:http://www.cnblogs.com/zhanghuaye/p/5089872.html

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