#include<iostream>
#include<string>
#include<vector>
using namespace std;

int main()
{
	vector<char>c = { '1', '2', '3' };
	string s(c.begin(),c.end());
	cout << s << endl;

	return 0;
}

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
  • 2021-09-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-15
  • 2022-12-23
  • 2021-08-30
  • 2022-12-23
相关资源
相似解决方案