1 #include<bits/stdc++.h>
2 using namespace std;
3 int main(){
4 int i,k,n = 1e9;
5 clock_t start,end;
6 start = clock();
7 for(i=0;i<n;i++)k++;
8 end=clock();
9 cout<<(double)(end -start)/CLOCKS_PER_SEC<<endl;
10 return 0;
11 }
c++统计for运行时间
Posted g0rez
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++统计for运行时间相关的知识,希望对你有一定的参考价值。
以上是关于c++统计for运行时间的主要内容,如果未能解决你的问题,请参考以下文章