flowchart
- A simple flowchart can be as follow.flowchart LR B --> I --> C C --"Y"--> P1 C --"N"--> P2 P1 & P2 --> O --> E B(["Begin"]) I[/"Input"/] C{"Condition"} P1["Process 1"] P2["Process 2"] O[/"Output"/] E(["End"])
- Shapes are begin/end, I/O, condition, process.