Concept Flow - Switch with compound cases
Start: value to check
Switch statement begins
Check first case
Execute case
End switch
Default case
Execute default
End switch
The switch checks the value against each case, including compound cases separated by commas, and executes the matching case block.