Hello,
This is what I want to do:
switch(myvar)
{
case: 2 or 5:
...
break;
case: 7 or 12:
...
break;
...
}
I tried with "case: 2 || 5" ,but it didn't work.
The purpose is to not write same code for different values.
|
|
|
|
|
|
|
By stacking each switch case, you achieve the OR condition.
|
||||||||||||
|
|
|
The example for switch statement shows that you can't stack non-empty
|
||||||||
|
|
|
Case-statements automatically fall through if you don't specify otherwise (by writing break). Therefor you can write
// etc... } |
||||
|
|
|
You do it by stacking case labels:
|
||
|
|
|
|
|
||
|
|