微信扫一扫
string str;
while( cin>>str )
{
cout << str <<endl;
}
return 0;
输入: sssss aaaaa
输出: sssss
aaaaa
相关推荐