2016-01-21 10:33:15 星期四url
st=>start: Start op=>operation: Your Operation sub=>subroutine: My Subroutine cond=>condition: Yes or No? io=>inputoutput: catch something... e=>end: End st->op->cond cond(yes)->io->e cond(no)->sub(right)->op
流程圖的語法總體分爲兩部分,第一段用來定義流程圖元素,第二段用來鏈接流程圖元素,指定流程圖的執行走向。code
tag=>type: content:>url
input
說明:it
鏈接流程圖元素階段的語法就簡單多了,直接用->
來鏈接兩個元素,須要注意的是condition類型,由於他有yes和no兩個分支,因此要寫成io
cond(yes)->io->e cond(no)->sub(right)->op