입출력 속도 향상 및 입력 간편화 in C++

Purple·2021년 11월 1일
0
post-thumbnail

코드

#include <bits/stdc++.h>

using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    freopen("input.txt", "rt", stdin);

    string s;
    cin >> s;
    cout << s;
    return 0;
}
  • ios_base::sync_with_stdio(false);
  • cin.tie(NULL);
    입출력 속도를 향상시킨다.
  • freopen("input.txt", "rt", stdin);
    빌드되는 디렉토리에 input.txt라는 파일에서 입력을 읽어오는 코드이다.
profile
안녕하세요.

0개의 댓글