C++
Introduction C++是一种兼具面向过程和面向对象特征的编程语言 Start 让我们写下第一个C++文件! hello.cpp123456789#include <iostream>using namespace std;int main(){ cout << "Hello World!" << endl; return 0;} 使用Linux命令行来调用编译器 1$ g++ -o hello hello.cpp 运行编译好的程序 12$ ./helloHello World!
Markdown
Introduction Markdown是一种标记语言,而Latex是一种排版系统 Usage 标题 123456# Title## Title### Title#### Title##### Title###### Title 引用 12> Learn what is to be taken seriously and laugh at the rest.> ― Herman Hesse Learn what is to be taken seriously and laugh at the rest. ― Herman Hesse 强调 12345678910111213*斜体***加粗*****斜体加粗***<u>下划线</u>==高亮==* 重点+ 重点- 重点 斜体 加粗 斜体加粗 下划线 高亮 重点 重点 重点 链接 1[mygithub](https://github.com/huaeryi) mygithub 1[我的github](https://github.com/huaeryi &q...
First
First This is my First Markdown file. reference to title