markdownflow流程图

编程

  • start
  • end
  • operation
  • subroutine
  • condition
  • inputoutput

流程图的语法大体分为两段,第一段用来定义元素,第二段用来连接元素:

```flow
st=>start: Start
in=>inputoutput: input
e=>end: End
st->in
in->e
```

```flow
st=>start: Start
op=>operation: Your Operation
cond=>condition: Yes or No?
op2=>operation: wash
e=>end
st->op->cond
cond(yes)->op2
cond(no)->op
op2->e
 

 

以上是 markdownflow流程图 的全部内容, 来源链接: utcz.com/z/513192.html

回到顶部