markdown语法

流程图

  • http://note.youdao.com/iyoudao/?p=2445
graph LR
A-->B
gantt
dateFormat YYYY-MM-DD
section S1
T1: 2014-01-01, 9d
section S2
T2: 2014-01-11, 9d
section S3
T3: 2014-01-02, 9d
sequenceDiagram
A->>B: How are you?
B->>A: Great!
```***







$$\sin(\alpha)^{\theta}=\sum_{i=0}^{n}(x^i + \cos(f))$$
`


$$x > y$$
$$\sin(\alpha)^{\theta}=\sum_{i=0}^{n}(x^i + \cos(f))$$
```mermaid
flowchat
st=>start: 用户登陆
op=>operation: 登陆操作
cond=>condition: 登陆成功 Yes or No?
e=>end: 进入后台

st->op->cond
cond(yes)->e
cond(no)->op
Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!
graph TB
A-->B
graph LR
A[平行四边形]
graph LR
A((圆))
B{菱形}
function test(){
    console.log("helloworld!")
}

<html>
    <head>head>
    <body>body>
html>
public class test{
    public static void main(String[] args){
        System.out.printIn("hello");
    }
}
from turtle import *
from time import sleep


def big_Circle(size):  #函数用于绘制心的大圆
   speed(1)
   for i in range(150):
       forward(size)
       right(0.3)

你可能感兴趣的:(java,Java)