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

C++中获取时间

时间:2017-05-13 17:56:39      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:div   ble   结束时间   运行时   running   ...   include   ++   cloc   

#include<time.h>    //获取时间头文件
//
-------------------------------------- clock_t start_time=clock(); //开始时间 { //...... } clock_t end_time=clock(); //结束时间 //-------------------------------------- cout<< "Running time is: " <<static_cast<double>(end_time - start_time)/CLOCKS_PER_SEC <<"(s)"<<endl; //输出运行时间

 

C++中获取时间

标签:div   ble   结束时间   运行时   running   ...   include   ++   cloc   

原文地址:http://www.cnblogs.com/wqpkita/p/6849323.html

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