본문 바로가기

Programming/C++ STL

[C++ STL] C++ 입출력 속도 향상

입출력 sync 끊기

ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);

endl 대신 \n 사용하기

cout << "\n";