新微赢技术网
标题:
[求助]一个关于string连接的问题
[打印本页]
作者:
^o^星禾じ☆v
时间:
2009-11-4 02:02
标题:
[求助]一个关于string连接的问题
请教各位:
编一个程序,从标准输入读取多个string对象,把它们连接起来存放到一个更大的string对象中,并输出连接后的对象。
我写的程序:
#include<iostream>
#include<string>
using std::cout;
using std::cin;
using std::endl;
using std::string;
int main()
{
string word,bword;
cout<<"Enter several strings: "<<endl;
while(cin>>word)
{
if(word=="quit")break;
bword+=word+" ";
}
cout<<"All the strings bounded is: "<<bword<<endl;
return 0;
}
只能完成在打入“quit”后显示连接后的string对象并退出程序,请问怎样才能在输入回车后做到显示连接后的string对象并退出程序呢?
作者:
想念~!
时间:
2009-11-4 02:02
/*编一个程序,从标准输入读取多个string对象,把它们连接起来存放到一个更大的string对象中,并输出连接后的对象。
我写的程序:*/
#include<iostream>
#include<string>
using namespace std;
//using std::cout;
//using std::cin;
//using std::endl;
//using std::string;
int main()
{
string word,bword;
cout<<"Enter several strings: "<<endl;
while(cin>>word)
{
if(word=="quit")break;
bword+=word+" ";
}
cout<<"All the strings bounded is: "<<bword<<endl;
return 0;
}
//只能完成在打入“quit”后显示连接后的string对象并退出程序,请问怎样才能在输入回车后做到显示连接后的string对象并退出程序呢?
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2