我想将用户的输入视为多行。但是,当一个程序运行并写下#34;你好,我的名字我们umer"在这里当我进入写新线。该程序运行。我想写新的一行。这是我的代码来阅读inpput。
string text;
cout<<"Enter the text"<<endl;
getline(cin,text);
我如何在C ++中输入多行?
答案 0 :(得分:2)
您想要为多行使用循环。
while(getline(cin,line))
{
cout << line << endl;
//do something
}