#include <iostream>
#include <string>
using namespace std;
int main()
{
//getline读取string对象
//string line;
//while (getline(cin,line))
//{
// cout<<line<<endl;
// if (line=="exit")
// {
// break;
// }
//}
上述输出结果:
//输入操作符读取string对象 将空格符换行输出
string strLine;
while (cin>>strLine)
{
cout<<strLine<<endl;
if (strLine=="exit")
{
break;
}
}
上述输出结果:
system("pause");
}
本文转自 韬光星夜 51CTO博客,原文链接:http://blog.51cto.com/xfqxj/562354,如需转载请自行联系原作者