软件工程C++C++ 读取一整行C++ 读取一整行我们应该用 getline 替代 >> 运算符: while (getline(cin, line)) cout << line << endl; 注意换行符不被读取。