flowchart

Flowchart else if


I'm making a flowchart a for an algorithm, and came into some problem for an else if statement.

For an if-statement such as this one

if (something) {}
else if (something) {}
else {}

How would the else if statement look like in a flowchart diagram?


Solution

  • http://code2flow.com allows you to create such flowcharts from code.

    enter image description here

    You may click to edit this.