기록용임니다. ..
c++ 스타일의 endl
을 사용하면,
개행 문자를 출력하면서 출력 버퍼까지 비운다.
그래서 시간이 오래걸리므로,
줄 바꿀 땐 '\n' 사용하기
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ios_base::sync_with(stdio(false));
: c, c++의 버퍼 분리
단,
cin & scanf, getchar, gets
cout & printf, putchar, puts
를 같이 사용하면 안된다.
cin.tie(NULL);
: cin과 cout의 묶음을 풀어준다
또,, 추가할게 생기면 추가할게요