How can I check if a condition passes multiple values
Example:
if(number == 1,2,3)
I know that commas don't work.
EDIT: Thanks!
|
1
|
How can I check if a condition passes multiple values Example:
I know that commas don't work. EDIT: Thanks!
|
||||
|
|
|
|
||
|
|
|
For a list of integers:
|
||
|
|
|
|
I'll assume a C-Style language, here's a quick primer on IF AND OR logic:
So you can see how you can chain these checks together to create some pretty complex logic. |
||
|
|
|
|
Haha! Wow! Thanks guys, I tried (number == 1),(number == 2) and (number 1 || 2 || 3) Thanks again for the quick response... |
||
|
|
|
|
Since you specify no language I add a Python solution:
|
||
|
|
|
|
In T-SQL you can use the IN operator:
If you are using a collection there may be a contains operator for another way to do this. In C# for another way that may be easier to add values:
|
||
|
|
|
|
What language? For example in VB.NET you use the word OR, and in C# you use || |
||
|
|
|
|
|
||
|