首页 > 代码库 > 对时间日期的操作
对时间日期的操作
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 }
对时间日期的操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。