백준 알고리즘(C/C++) - 15552번 빠른 A+B
- 알고리즘
- 2021. 5. 28.
#include <iostream>
int main() {
std::cin.tie(NULL);
std::ios::sync_with_stdio(false);
int count, a, b;
std::cin >> count;
for (; count > 0; count--) {
std::cin >> a >> b;
std::cout << a + b << "\n";
}
return 0;
}
(c언어는 그냥 하던대로 해도됨)
cin은 입력받는 함수이다.
cin 함수 내부 과정을 들여다보면
cin으로 읽을 때 먼저 버퍼를 비우는 작업이 있다.
C++ 버퍼를 이용하지 않고 C 버퍼를 이용하는 것이다.
자세한 내용은 밑에서 확인 바란다.