From 21c295c8fdf39b065680d5c057d8a16481b95f7c Mon Sep 17 00:00:00 2001 From: 24OI-bot <15963390+24OI-bot@users.noreply.github.com> Date: Sun, 13 Jan 2019 22:41:17 +0800 Subject: [PATCH] style: format markdown files with remark-lint --- docs/math/bignum.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/math/bignum.md b/docs/math/bignum.md index b1b91541..7bb28f13 100644 --- a/docs/math/bignum.md +++ b/docs/math/bignum.md @@ -65,6 +65,7 @@ void print(int a[LEN]) { 拼起来就是一个完整的复读机程序咯。 ??? "`copycat.cpp`" + ```cpp #include #include @@ -139,6 +140,7 @@ void add(int a[LEN], int b[LEN], int c[LEN]) { 试着和上一部分结合,可以得到一个加法计算器。 ??? "`adder.cpp`" + ```cpp #include #include @@ -219,6 +221,7 @@ void sub(int a[LEN], int b[LEN], int c[LEN]) { 将上一个程序中的 `add()` 替换成 `sub()`,就有了一个减法计算器。 ??? "`subtractor.cpp`" + ```cpp #include #include @@ -415,6 +418,7 @@ void div(int a[LEN], int b[LEN], int c[LEN], int d[LEN]) { 将上面介绍的四则运算的实现结合,即可完成开头提到的计算器程序。 ??? "`calculator.cpp`" + ```cpp #include #include @@ -559,6 +563,7 @@ void div(int a[LEN], int b[LEN], int c[LEN], int d[LEN]) { [这里](https://paste.ubuntu.com/p/7VKYzpC7dn/) 有一个封装好的高精度整数类。 ??? 这里是另一个模板 + ```c++ #define MAXN 9999 // MAXN 是一位中最大的数字 -- 2.11.0