switch Statement
switch(int expression){
case constant1:
statements1
case constant2:
statements2
. . .
case constantn:
statementsn
default:
statements
}
If all the cases don't match the value of the exppression, execute the statements under the default.