I am trying to read from stdin using C++, using this code #include <iostream> using namespace std; int main() { while(cin) { getline(cin, input_line); cout ...
確定! 回上一頁