Concept Flow - If, elsif, else statements
Start
Check if condition
|Yes
Execute if block
End
No
Check elsif condition
|Yes
Execute elsif block
End
No
Execute else block
End
The program checks the if condition first. If true, it runs the if block. If false, it checks the elsif condition. If that is true, it runs the elsif block. Otherwise, it runs the else block.