C++基础
2020-03-07 本文已影响0人
笔头还没烂
第一天:
1、安装了VS 2010的环境;
2、学习了 Hello World 的编写
#include <iostream>
using namespace std;
int main() {
cout << "Hello C++" << endl;
system("pause");
return 0;
}
第一天:
1、安装了VS 2010的环境;
2、学习了 Hello World 的编写
#include <iostream>
using namespace std;
int main() {
cout << "Hello C++" << endl;
system("pause");
return 0;
}