1 2 3 4 5 6 7 8 9 10 11 12 | #include <iostream> #include <iterator> #include <string> int main(void) { std::istreambuf_iterator<char> begin(std::cin), end; std::string s(begin, end); std::cout << s; return 0; } | cs |
'Programming > C++' 카테고리의 다른 글
c++ 템플릿 공부 (0) | 2017.08.29 |
---|---|
Lvalue와 Rvalue (0) | 2017.05.20 |