#include <iostream>
#include <ctime>
using namespace std;
int main()
{
int i, j;
int t1, t2;
t1 = clock();
for(i = 0; i < 30000; i++)
{
for(j = 0; j < 30000; j++)
{
;
}
}
t2 = clock();
cout << t2 - t1 << endl;
return 0;
}
时间单位是毫秒。
最后
以上就是呆萌柠檬最近收集整理的关于用clock函数来记录程序运行时间的全部内容,更多相关用clock函数来记录程序运行时间内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复