include "stdafx.h"
include
include
include<conio.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string result_str, str;
cin >> result_str;
while (cin>>str)
{
result_str = result_str + " "+str;
if (getchar() == '\n')
break;
}
cout << result_str << endl;
return 0;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2021-09-22
相关资源
相似解决方案