0%

C++ 小發現 cout 遠快於 prinf()

直接附上範例

1
2
3
4
5
6
7
8
9
#include<bits/stdc++.h>
using namespace std;

int main(){
ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
for(int i=0;i<1e6;i++){
cout<<i;
}
}

cout 1.362s 1e5 printf() 6.840s 1e5 cout 3.794s 1e6 printf() 44.907s 1e6

以上為我測試的結果,大家也可以試試看。