输入toc 自动生成目录
一级标题
二级标题
三级标题
this is a note
are you sure?
absolutely
字体样式
前后两个*表示加粗
一个※表示 斜体
删除线
下划线
上标 1
表格
姓名 | 年龄 | 排行 |
---|---|---|
甲 | 25 | 3 |
乙 | 22 | 1 |
丙 | 21 | 2 |
第二行分割表头和内容
无序列表
- 无序列表
- 第二条
- 内部第一条
- 无序列表
下面是一个无情的分割线
有序列表
- 第一条
- 第二条
- 第三条
注释 引用
超链接
这个是我的超链接
网址 邮箱
我的邮箱: xxx@163.com
注释 引用
引用
Life was like a box of chocolate, you never know what you gonna get.
今天学习的template组件
//Introduce to templates
#include<iostream>
template <typename T>
T square(T x) {
return x * x;
}
int main() {
using namespace std;
cout << square(6) << endl;
cout << square(5.5) << endl;
cout << square<int>(7) << endl;
cout << square<double>(8.9) << endl;
}