SWITCH CASE STATEMENT switch (expr) { case value_1: statement_1; case value_2: statement_2; ... case value_n: statement_n; default: statement; } Execute 'statement x' depending of the value of 'expr'. The 'default' case is optional. A 'break' in the 'statement' will terminate the case check. Note: If no 'break' is set at least a 'default' case might match!