赞
踩
```mermaid
flowchat
st=>start: 开始
op1=>operation: 一阶段处理
sb1=>subroutine: 一阶段处理2
op3=>operation: 一阶段处理3
op4=>operation: 一阶段处理4
cond1=>condition: 条件1
ed=>end: 结束
st->op1(right)->sb1->cond1
cond1(yes,right)->op3->ed
cond1(no,left)->op4->ed
```
```mermaid
flowchat
st=>start: 开始
op1=>operation: 一阶段处理
op2=>operation: 二阶段处理1
op3=>operation: 二阶段处理2
cond1=>condition: 条件1
ed=>end: 结束
st->op1->cond1
cond1(yes)->op2->ed
cond1(no)->op3->ed
```
```mermaid
flowchat
st=>start: 开始
e=>end: 结束
op=>operation: 我的操作
cond=>condition: 确认?
st->op->cond
cond(yes)->e
cond(no)->op
```
flow 表示为流程图
start表示为开始
end表示为结束
operation表示处理功能
subroutine表示子处理程序
inputoutput表示输入输出
right表示向左
left表示向右
top表示向上
bottom表示向下
yes表示条件成立
no表示条件不成立
,为两个元素的隔离字符
```mermaid flowchat st=>start: 开始|past op1=>operation: 输入成绩 |past io0=>inputoutput: 输入成绩 cond1=>condition: 是否大于60分 |pass cond2=>condition: 是否大于80分 |future cond3=>condition: 是否大于90分 op2=>operation: 判为不及格 op3=>operation: 判为及格 op4=>operation: 判为良好 op5=>operation: 判为优秀 io1=>inputoutput: 打印成绩登记 ed=>end: 结束 st->op1->io0->cond1 cond1(yes,right)->cond2 cond1(no)->op2->io1->io1->ed cond2(yes,right)->cond3 cond2(no)->op3->io1->ed cond3(yes,right)->op5->io1->ed cond3(no)->op4->io1->ed ```
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。