hiyouga / hiyouga-blog-project

填坑ing...
http://blog.hiyouga.top
MIT License
7 stars 3 forks source link

多文章及Markdown语法测试 #3

Open hiyouga opened 6 years ago

hiyouga commented 6 years ago

Leave none comment……

大标题

中标题

小标题

很小的标题

加粗文本

倾斜文本

删除文本

引用 多行

单行代码: #include <iostream>

多行代码:

num1 = input("The first number is")
num2 = input("The second number is")
avg = (float(num1) + float(num2)) / 2
print("The average number is %f" %avg)

C++:

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    long long n, m;
    cin >> n >> m;
    if(n < 27){
        while((m - (1<<n)) >= 0){
            m -= (1<<n);
        }
    }
    cout << m << endl;
}

Html:

<div class="test">
    <span>Test</span>
</div>

特定语言:

if (isAwesome){
  return true
}

超链接

  1. 有序列表
  2. two
  3. three

Emoji::sparkles:

数学公式: $$x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}$$

表格:

First Header Second Header
Content from cell 1 Content from cell 2
Content in the first column Content in the second column

图片: img_20171012_211341

文件: cppWheel.docx

hiyouga commented 6 years ago

回复测试
多行 EOF