1. cin, cout 으로 파일 입출력 하기
freopen("stairs.inp", "r", stdin);
freopen("stairs.out", "w", stdout);
2. 파일입출력, 표준입출력 효율성 개선
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
'PS(Problem Solving) > CPP 개념, stl 정리' 카테고리의 다른 글
[CPP] call by address, reference, value (0) | 2021.10.27 |
---|