文档说明
此系列文档中介绍的是精要知识点,文档有对应的视频教程,讲解更详细
。
第一个C++程序 hello world
#include <iostream>
using namespace std;
int main(){
cout << "hello world";
return 0;
}
用C++编程,实现A+B的求和
#include <iostream>
using namespace std;
int main(){
cout << 10 + 20;
return 0;
}