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)
For starters, let's recast the statement.
if (case1) {outcome1} else if (case2) {outcome2} else {outcome3}
Does it not flow thus?
case1? yes --> outcome1
no --> case2? yes --> outcome2
no --> outcome3