The Question is this: Is there any way to create a AND/OR/ETC. Boolean Statement that shares the same value (EX. (1 == 0 || 1 == -1 || 1 == 2 || 1 == 31)
) without having to specify that value(1
) each time?
Asked
Active
Viewed 26 times
1

Game Master Jack
- 113
- 1
- 9
-
See also http://stackoverflow.com/questions/15228742/or-operand-with-int-in-if-statement – Robert Harvey Sep 28 '14 at 02:32
-
Unfortunate that this was closed. There is another way to do it that is not shown in the answers to the other question. Hint: Use a `switch` statement. – Solomon Slow Sep 28 '14 at 02:37