It really depends on what conditions you want to test for. A switch statement is good when you have a single variable that can have one of several different values, but not so useful when you have several different variables to test. In this case, you might want an ‘if/else if/else’ type structure, or an ‘if’ with several conditions combined through ‘c1 c2 / c1 || c2’ logical operators.