输出操作符和getline读取string对象

#include <iostream>

#include <string>

using namespace std;

int main()
{
//getline读取string对象 
//string line;
//while (getline(cin,line))
//{
// cout<<line<<endl;
// if (line=="exit")
// {
// break;
// }
//}
上述输出结果:

输出操作符和getline读取string对象

//输入操作符读取string对象   将空格符换行输出
string strLine;
while (cin>>strLine)
{
cout<<strLine<<endl;
if (strLine=="exit")
{
break;
}
}
上述输出结果:

输出操作符和getline读取string对象

system("pause");
}



本文转自 韬光星夜 51CTO博客,原文链接:http://blog.51cto.com/xfqxj/562354,如需转载请自行联系原作者
上一篇:FREAK漏洞可能破坏网络加密机制


下一篇:SpringBoot实战(七)之与Redis进行消息传递