C++で、stdinから文字列を読み込む方法をメモします。
/////////////////////// // stdin input example // using cin.getline /////////////////////// #include <iostream> using namespace std; int main() { while(cin) { getline(cin, input_line); cout << input_line << endl; }; return 0; }