vscode 学习完成

This commit is contained in:
Estom
2021-04-12 16:08:11 +08:00
parent c1ca282e84
commit 8aab36604b
16 changed files with 461 additions and 46 deletions

11
Vscode/C/hello.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<int> vec;
cout << "hello world" << endl;
return 0;
}