You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BPEMR/xi-note-computer/Xi-A-Program/Xi-XX-C++/大三/code/6函数/6.3.3函数返回列表初始化的值.cpp

17 lines
186 B

2 years ago
#include <iostream>
#include <vector>
using namespace std;
vector<string> a();
int main(){
a();
return 0;
}
vector<string> a(){
return {"xsxxsxsx","xcgyubajsks","HelloWorld"};
}