Tag Archives: 流程图

使用PlantUML绘制流程图(活动图)

代码:
@startuml
start
if (条件 A) then (yes)
  :文本 1;
elseif (条件 B) then (yes)
  :文本 2;
  stop
elseif (条件 C) then (yes)
  :文本 3;
elseif (条件 D) then (yes)
  :文本 4;
else (nothing)
  :文本 else;
endif
stop
@enduml

更多可以参考这里:https://pl[......]

继续阅读