报错代码,求助
查看原帖
报错代码,求助
977778
__Harry_Haiyun__楼主2023/5/15 18:32
#include <bits/stdc++.h>
#include <string>
using namespace std;
string s;
string temp;
int n;
int L;
int main()
{
	cin >> n >> L;
	for (int i = 0; i < n; i++)
	{
		cin >> temp;
		append(s,temp);
	} 
	cout << s;
	return 0;
}
2023/5/15 18:32
加载中...