mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
12 lines
196 B
C++
12 lines
196 B
C++
#include <iostream>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
int main(void) {
|
|
vector<string> t;
|
|
t.push_back("123456");
|
|
t.push_back("7890");
|
|
cout << t.at(0) << endl;
|
|
return 0;
|
|
} |